AlipaySystemOauthTokenRequest.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. // using System;
  2. // using System.Collections.Generic;
  3. // using Aop.Api.Response;
  4. // namespace Aop.Api.Request
  5. // {
  6. // /// <summary>
  7. // /// AOP API: alipay.system.oauth.token
  8. // /// </summary>
  9. // public class AlipaySystemOauthTokenRequest : IAopRequest<AlipaySystemOauthTokenResponse>
  10. // {
  11. // /// <summary>
  12. // /// 授权码,用户对应用授权后得到。本参数在 grant_type 为 authorization_code 时必填;为 refresh_token 时不填。
  13. // /// </summary>
  14. // public string Code { get; set; }
  15. // /// <summary>
  16. // /// 授权方式。支持: 1.authorization_code,表示换取使用用户授权码code换取授权令牌access_token。 2.refresh_token,表示使用refresh_token刷新获取新授权令牌。
  17. // /// </summary>
  18. // public string GrantType { get; set; }
  19. // /// <summary>
  20. // /// 刷新令牌,上次换取访问令牌时得到。本参数在 grant_type 为 authorization_code 时不填;为 refresh_token 时必填,且该值来源于此接口的返回值 app_refresh_token(即至少需要通过 grant_type=authorization_code 调用此接口一次才能获取)。
  21. // /// </summary>
  22. // public string RefreshToken { get; set; }
  23. // #region IAopRequest Members
  24. // private bool needEncrypt=false;
  25. // private string apiVersion = "1.0";
  26. // private string terminalType;
  27. // private string terminalInfo;
  28. // private string prodCode;
  29. // private string notifyUrl;
  30. // private string returnUrl;
  31. // private AopObject bizModel;
  32. // private Dictionary<string, string> udfParams; //add user-defined text parameters
  33. // public void SetNeedEncrypt(bool needEncrypt){
  34. // this.needEncrypt=needEncrypt;
  35. // }
  36. // public bool GetNeedEncrypt(){
  37. // return this.needEncrypt;
  38. // }
  39. // public void SetNotifyUrl(string notifyUrl){
  40. // this.notifyUrl = notifyUrl;
  41. // }
  42. // public string GetNotifyUrl(){
  43. // return this.notifyUrl;
  44. // }
  45. // public void SetReturnUrl(string returnUrl){
  46. // this.returnUrl = returnUrl;
  47. // }
  48. // public string GetReturnUrl(){
  49. // return this.returnUrl;
  50. // }
  51. // public void SetTerminalType(String terminalType){
  52. // this.terminalType=terminalType;
  53. // }
  54. // public string GetTerminalType(){
  55. // return this.terminalType;
  56. // }
  57. // public void SetTerminalInfo(String terminalInfo){
  58. // this.terminalInfo=terminalInfo;
  59. // }
  60. // public string GetTerminalInfo(){
  61. // return this.terminalInfo;
  62. // }
  63. // public void SetProdCode(String prodCode){
  64. // this.prodCode=prodCode;
  65. // }
  66. // public string GetProdCode(){
  67. // return this.prodCode;
  68. // }
  69. // public string GetApiName()
  70. // {
  71. // return "alipay.system.oauth.token";
  72. // }
  73. // public void SetApiVersion(string apiVersion){
  74. // this.apiVersion=apiVersion;
  75. // }
  76. // public string GetApiVersion(){
  77. // return this.apiVersion;
  78. // }
  79. // public void PutOtherTextParam(string key, string value)
  80. // {
  81. // if(this.udfParams == null)
  82. // {
  83. // this.udfParams = new Dictionary<string, string>();
  84. // }
  85. // this.udfParams.Add(key, value);
  86. // }
  87. // public IDictionary<string, string> GetParameters()
  88. // {
  89. // AopDictionary parameters = new AopDictionary();
  90. // parameters.Add("code", this.Code);
  91. // parameters.Add("grant_type", this.GrantType);
  92. // parameters.Add("refresh_token", this.RefreshToken);
  93. // if(udfParams != null)
  94. // {
  95. // foreach(string key in this.udfParams.Keys)
  96. // {
  97. // parameters.Add(key, this.udfParams[key]);
  98. // }
  99. // }
  100. // return parameters;
  101. // }
  102. // public AopObject GetBizModel()
  103. // {
  104. // return this.bizModel;
  105. // }
  106. // public void SetBizModel(AopObject bizModel)
  107. // {
  108. // this.bizModel = bizModel;
  109. // }
  110. // #endregion
  111. // }
  112. // }