AlipayFunction.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. using System;
  2. using System.Collections.Generic;
  3. using Aop.Api;
  4. using Library;
  5. using Microsoft.AspNetCore.Http;
  6. using Aop.Api.Request;
  7. using Aop.Api.Response;
  8. using Aop.Api.Util;
  9. namespace MySystem
  10. {
  11. public class AlipayFunction
  12. {
  13. public readonly static AlipayFunction Instance = new AlipayFunction();
  14. private AlipayFunction()
  15. { }
  16. private string AppId = "2021003116616751";
  17. public string Pid = "2088141704579033";
  18. private string PrivateKey = "MIIEpAIBAAKCAQEA1KjMzZJIRG6QQ3+c/euVrc+8RR0xMw6A+EONSKhJq4Bg+rtxQPCfdF2bpZ4NMaSqfalSiLoxrZSYBYOZhpDP67i9LXGUoFCWdRL7ROTqJvuU6KyEeMplQ6Q3uwWbuKbh9COt0vhqn/pjlUsomTwq+DRQv10awynkZikqceXdP0EH4iGZG0hyerEP5yLHpHiggf4f7TOsovHX+fGLPmWFO1zUTHHbz7HxU4BQKn3yuje4yMhoyv5h/wZzeVwvj+Qti8Hlh351rF0f5BHwN1YMGIrWuPU5bF8OMHS/UXPxh7Bs795ZZyplYztTz26QfKfLWVVsLOng4pvgPS+OgzZydwIDAQABAoIBAEu6mMQT9Zw46zK+PP/HZxPwSBEsphqSbab7F1LqauGh4+cl3NzNU1szAnxl3jjxdK0vIO8DrzErGz/Lb16WLxS4QtXt/olgaVPjoIsWIbQkHxEEbmA9YvZFgnsdMij9dLVmBz57rCywE8pUa262GG8u4hpjY2Zggq9GtZC91J3zOeETBG828gU+FLHGcDpfz7pD1jC0noDfDRxmIImOMZvChIvvY+tm6MpySXN8lw1vxhLc0aZbKSQkuVyCyB4fIsdJJvh2dRPiY+BA0jXNK3mWwnnHzac/9JXqWFlwk6iPIIjXPUldz7Zq3EpCI+9p+UqLtIu6BAUbk1biFTt8xMECgYEA+2iIxZfdl1N1suA/aEbUdjd0kxeeOsGv7Ps0rOYn+4/q1dkUukg2V6VRy3E8BUt+9zLPTR8DmL7oBi+kDsGehjHlH7U6Pe8qKszB4ufQBDHc71yg9liqOWa4s9VoBD0VIU9CO0HtYjRor7rVuUzp+j58SLP7wIEPGEwdgjeYENECgYEA2IsYEyHiwhjy5rx7fmv3duZC5zyesIqxdAz79AuZ7gnpNEhddi5cEpcibnVmwZliCe6SoLzXZ6difEfD4VmLsYEAWqf5sqJ2PswZmHtA9F4We9WUe2zj+pFG0yCCVrcbDZXzQYaLmyuMNe/jpgyY178czohpnvQlr++bYa9DYMcCgYEAqGX6xy/UM9qpiel/T1+yTIUUxroZOI4oQvp47B82ROC/kgJYSfa4v7hys2zjoUBSiU41YRkXFac6T3p1z5SNlKGzMav4mSer/QMuE8jmowirToGjJ594Vf6iVYLqq3wmvSsT2BFu6krknGDva7FDQGW+Zgx44xcPf1zsnx6R8yECgYEAtfFA3Cp3lbBSvy4U8ScUOPHFuvbDOwB9k02pkOcCgfAP4p7+8GKJeBFGm9rG6NnQdxneV3Hz5yLL7DJ8UebkKdODEajbc41vntnsk6LT877uU0QkSwQ2FX1lLdW9zdBxyZt5VVAQEuOnHlaeRxGEhpoMQTh6zlTDKa1AN/aDvVcCgYApytvSEdTpKcQuEyPOfbQv2pXYujCacMFIRHvJW/HvX7yaZSAvSYK+lw8l53bTbJpJ3pq/1Tol6tyjY7HRsVvQ68Jn1MApARMlldn1GoAPcgDFzlJCB0JCOUAE1rBS5lA97wQ1YhI8qBRqaE7Qrtf4D5oZdEjbtq8VCeIaD9huIQ==";
  19. private string PublicKey = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1KjMzZJIRG6QQ3+c/euVrc+8RR0xMw6A+EONSKhJq4Bg+rtxQPCfdF2bpZ4NMaSqfalSiLoxrZSYBYOZhpDP67i9LXGUoFCWdRL7ROTqJvuU6KyEeMplQ6Q3uwWbuKbh9COt0vhqn/pjlUsomTwq+DRQv10awynkZikqceXdP0EH4iGZG0hyerEP5yLHpHiggf4f7TOsovHX+fGLPmWFO1zUTHHbz7HxU4BQKn3yuje4yMhoyv5h/wZzeVwvj+Qti8Hlh351rF0f5BHwN1YMGIrWuPU5bF8OMHS/UXPxh7Bs795ZZyplYztTz26QfKfLWVVsLOng4pvgPS+OgzZydwIDAQAB";
  20. private string AlipayPublicKey = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxycehrmnTl2IaIAECP+0HWc1eWGM/T6x022K7K6fdf+xoyC97TBJaG4G3Bcon4gsJX+Sad5IA9OJIQ4eN1joM35hIlwcFZ6MmCuVXx/SMAKThIjK0jsRc6aTxVQG+GVCgS7dXMKb4Sm+vK2wEM6xtDeqcfYMB0BqGZRvxbIV59a2ooPrha4FkV6nNC9DQefzC0picHXV64oYUjMM2ed4ASTQVds7HP9BZfalz//APZcWdBV08f+xv7n79Twz/gNtVAadfuTAlcjsS6aK+G/OrZtr/diuemeRPRUKlVhcr5xOQDhqBgtdIw8M9Wp6I4ULXRlthKVBWToH9j6n9vDIiwIDAQAB";
  21. #region 代商家签约
  22. //(开启事务)接口创建应用事务,返回生成代商户操作事务编号 batch_no
  23. public string GetBatchNo(string Name, string Mobile, string Email)
  24. {
  25. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  26. AlipayOpenAgentCreateRequest request = new AlipayOpenAgentCreateRequest();
  27. request.BizContent = "{" +
  28. "\"account\":\"" + Email + "\"," +
  29. "\"contact_info\":{" +
  30. "\"contact_name\":\"" + Name + "\"," +
  31. "\"contact_mobile\":\"" + Mobile + "\"," +
  32. "\"contact_email\":\"" + Email + "\"" +
  33. "}" +
  34. "}";
  35. string result = "";
  36. try
  37. {
  38. AlipayOpenAgentCreateResponse response = client.Execute(request);
  39. result = response.Body;
  40. function.WriteLog(result, "开启事务");
  41. //{"alipay_open_agent_create_response":{"code":"10000","msg":"Success","batch_no":"2022021011321326200059849","batch_status":"init"},"sign":"su+weyK1CZEXES8mdckalg16J4BELTQeVNJSpXVYg3nh5g3E7jDh/mQctkjH8HbM0RybQSahZ2j60aUTossPMXqdq2nPRkR4c/kM34toFFNU/2p7jqo9k/MbB1JotW+qFI+C/GCX/9mZQqm2tSQdYIiZlCsEtP13ZP2EQ6momEZrApyLQYUl1H54PojJgqo6zGKDXTnXuZcpi/VPP5YoWhYMx8WPFMS6+T3zr+LNPDOI94j5vDdUHQdjFAGiQMyyhfNOBcFFi18bAfWhPqlLWwblCZamTHN/QaOHo+fkBZeo9uKqrnSHPn8XW0tDAIf1qNUfY2eBzYZUIqWKbz509A=="}
  42. }
  43. catch (Exception ex)
  44. {
  45. function.WriteLog(ex.ToString(), "接口创建应用事务异常");
  46. result = "";
  47. }
  48. return result;
  49. }
  50. //提交代商户签约、创建应用事务
  51. public string AgentConfirm(string BatchNo)
  52. {
  53. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  54. AlipayOpenAgentConfirmRequest request= new AlipayOpenAgentConfirmRequest() ;
  55. request.BizContent="{" +
  56. " \"batch_no\":\"" + BatchNo + "\"" +
  57. "}";
  58. string result = "";
  59. try
  60. {
  61. AlipayOpenAgentConfirmResponse response = client.Execute(request);
  62. result = response.Body;
  63. function.WriteLog(result, "提交代商户签约");
  64. }
  65. catch (Exception ex)
  66. {
  67. function.WriteLog(ex.ToString(), "提交代商户签约异常");
  68. result = "";
  69. }
  70. return result;
  71. }
  72. //代签约产品通用接口,代商家发起签约产品申请
  73. // public string CommonSign(string BatchNo, string MccCode, string BusinessLicenseNo = "", string BusinessLicensePicPath = "", string SpecialLicensePicPath = "", string ShopScenePicPath = "", string ShopSignBoardPicPath = "")
  74. // {
  75. // IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  76. // AlipayOpenAgentCommonSignRequest request = new AlipayOpenAgentCommonSignRequest();
  77. // request.BatchNo = BatchNo;
  78. // request.MccCode = MccCode; //软件系统商 D_D05_7372
  79. // if(string.IsNullOrEmpty(SpecialLicensePicPath)) SpecialLicensePicPath = BusinessLicensePicPath;
  80. // FileItem SpecialLicensePic = new FileItem(SpecialLicensePicPath);
  81. // request.SpecialLicensePic = SpecialLicensePic;
  82. // if (!string.IsNullOrEmpty(BusinessLicenseNo))
  83. // {
  84. // request.BusinessLicenseNo = BusinessLicenseNo; //营业执照号码
  85. // }
  86. // if (!string.IsNullOrEmpty(BusinessLicensePicPath))
  87. // {
  88. // FileItem BusinessLicensePic = new FileItem(BusinessLicensePicPath);
  89. // request.BusinessLicensePic = BusinessLicensePic; //营业执照图片。被代创建商户运营主体为个人账户必填,企业账户无需填写
  90. // }
  91. // FileItem BusinessLicenseAuthPic = new FileItem(BusinessLicensePicPath);
  92. // request.BusinessLicenseAuthPic = BusinessLicenseAuthPic;
  93. // request.LongTerm = true;
  94. // request.DateLimitation = "长期";
  95. // if (!string.IsNullOrEmpty(ShopScenePicPath))
  96. // {
  97. // FileItem ShopScenePic = new FileItem(ShopScenePicPath);
  98. // request.ShopScenePic = ShopScenePic;
  99. // }
  100. // if (!string.IsNullOrEmpty(ShopSignBoardPicPath))
  101. // {
  102. // FileItem ShopSignBoardPic = new FileItem(ShopSignBoardPicPath);
  103. // request.ShopSignBoardPic = ShopSignBoardPic;
  104. // }
  105. // request.ProductCode = "FACE_TO_FACE_PAYMENT"; //isv要代商户签约产品码,产品码是支付宝内部对产品的唯一标识,例如:QUICK_WAP_WAY:手机网站支付,FACE_TO_FACE_PAYMENT:当面付
  106. // request.AppName = "客小爽";
  107. // // FileItem AppDemo = new FileItem(BusinessLicensePicPath);
  108. // // request.AppDemo = AppDemo;
  109. // List<string> WebSites = new List<string>();
  110. // WebSites.Add("http://www.kexiaoshuang.com/");
  111. // request.WebSites = WebSites;
  112. // request.AlipayLifeName = "客小爽";
  113. // request.WechatOfficialAccountName = "客小爽";
  114. // // FileItem WebSitesLoa = new FileItem(BusinessLicensePicPath);
  115. // // request.WebSitesLoa = WebSitesLoa;
  116. // request.WebTestAccount = "testAccount";
  117. // request.WebTestAccountPassword = "testPassword";
  118. // FileItem WebHomeScreenshot = new FileItem(BusinessLicensePicPath);
  119. // request.WebHomeScreenshot = WebHomeScreenshot;
  120. // FileItem WebItemScreenshot = new FileItem(BusinessLicensePicPath);
  121. // request.WebItemScreenshot = WebItemScreenshot;
  122. // FileItem WebPayScreenshot = new FileItem(BusinessLicensePicPath);
  123. // request.WebPayScreenshot = WebPayScreenshot;
  124. // request.WebStatus = "已上线";
  125. // string result = "";
  126. // try
  127. // {
  128. // AlipayOpenAgentCommonSignResponse response = client.Execute(request);
  129. // result = response.Body;
  130. // function.WriteLog(result, "代商家发起签约产品申请");
  131. // //{"alipay_open_agent_common_sign_response":{"code":"10000","msg":"Success"},"sign":"qt0DiXFXIJ7mX+W2+IX+cyYXx8ROGe8yxesXHGNltxpEv/s/zW16xzf4HQLtUlaAiWf3DiD2QV7Hj+REyoZw9AcktDAmlobcjQ28lTYufPECZoUJHpkn9VpGB932FC0hScVwCbsxQakH84MGT4cmjr1hCuSs7+XogdhlCTIKjau1e7ZglLnt7f1NqT8JnljVhmvkkE9gJTLq5H+Zq6XbFfBVptvM9w09HdjfhrsxAXJyQ4yU6JYX2tUYsRGz8ZrveDQMvXKTN9jnwKE9hh8ik6Sq49eUqfutV9GkKqhC96+Vy3nOTOTnPoECXZkco1wP5jsqHottWVsRV+NxdylnTw=="}
  132. // }
  133. // catch (Exception ex)
  134. // {
  135. // function.WriteLog(ex.ToString(), "代签约产品通用接口异常");
  136. // result = "";
  137. // }
  138. // return result;
  139. // }
  140. public string CommonSign(string BatchNo, string MccCode, string BusinessLicenseNo = "", string BusinessLicensePicPath = "", string SpecialLicensePicPath = "", string ShopScenePicPath = "", string ShopSignBoardPicPath = "")
  141. {
  142. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  143. AlipayOpenAgentFacetofaceSignRequest request= new AlipayOpenAgentFacetofaceSignRequest() ;
  144. request.BatchNo = BatchNo;
  145. request.MccCode = MccCode;
  146. if (!string.IsNullOrEmpty(BusinessLicenseNo))
  147. {
  148. request.BusinessLicenseNo = BusinessLicenseNo; //营业执照号码
  149. }
  150. if (!string.IsNullOrEmpty(BusinessLicensePicPath))
  151. {
  152. FileItem BusinessLicensePic = new FileItem(function.getPath(BusinessLicensePicPath));
  153. request.BusinessLicensePic = BusinessLicensePic; //营业执照图片。被代创建商户运营主体为个人账户必填,企业账户无需填写
  154. FileItem BusinessLicenseAuthPic = new FileItem(function.getPath(BusinessLicensePicPath));
  155. request.BusinessLicenseAuthPic = BusinessLicenseAuthPic;
  156. }
  157. if (!string.IsNullOrEmpty(SpecialLicensePicPath))
  158. {
  159. FileItem SpecialLicensePic = new FileItem(function.getPath(SpecialLicensePicPath));
  160. request.SpecialLicensePic = SpecialLicensePic;
  161. }
  162. if (!string.IsNullOrEmpty(ShopScenePicPath))
  163. {
  164. FileItem ShopScenePic = new FileItem(function.getPath(ShopScenePicPath));
  165. request.ShopScenePic = ShopScenePic;
  166. }
  167. if (!string.IsNullOrEmpty(ShopSignBoardPicPath))
  168. {
  169. FileItem ShopSignBoardPic = new FileItem(function.getPath(ShopSignBoardPicPath));
  170. request.ShopSignBoardPic = ShopSignBoardPic;
  171. }
  172. // FileItem SpecialLicensePic = new FileItem("C:/Downloads/ooopic_963991_7eea1f5426105f9e6069/16365_1271139700.jpg");
  173. // request.setSpecialLicensePic = "-";
  174. // request.Rate = "0.38";
  175. // request.SignAndAuth = true;
  176. // request.BusinessLicenseNo = "1532501100006302";
  177. // FileItem BusinessLicensePic = new FileItem("C:/Downloads/ooopic_963991_7eea1f5426105f9e6069/16365_1271139700.jpg");
  178. // request.setBusinessLicensePic = "-";
  179. // FileItem BusinessLicenseAuthPic = new FileItem("C:/Downloads/ooopic_963991_7eea1f5426105f9e6069/16365_1271139700.jpg");
  180. // request.setBusinessLicenseAuthPic = "-";
  181. // request.LongTerm = true;
  182. // request.DateLimitation = "2017-11-11";
  183. // FileItem ShopScenePic = new FileItem("C:/Downloads/ooopic_963991_7eea1f5426105f9e6069/16365_1271139700.jpg");
  184. // request.setShopScenePic = "-";
  185. // FileItem ShopSignBoardPic = new FileItem("C:/Downloads/ooopic_963991_7eea1f5426105f9e6069/16365_1271139700.jpg");
  186. // request.setShopSignBoardPic = "-";
  187. // request.ShopName = "-";
  188. // SignAddressInfo signAddressInfo = new SignAddressInfo();
  189. // signAddressInfo.country_code = "156";
  190. // signAddressInfo.province_code = "370000";
  191. // signAddressInfo.city_code = "371000";
  192. // signAddressInfo.district_code = "371002";
  193. // signAddressInfo.detail_address = "xx街道xx小区xx楼xx号";
  194. // signAddressInfo.longitude = "120.760001";
  195. // signAddressInfo.latitude = "60.270001";
  196. // request.shop_address = signAddressInfo;
  197. // request.BusinessLicenseMobile = "13189652239";
  198. string result = "";
  199. try
  200. {
  201. AlipayOpenAgentFacetofaceSignResponse response = client.Execute(request);
  202. result = response.Body;
  203. function.WriteLog(result, "代商家发起签约产品申请");
  204. }
  205. catch (Exception ex)
  206. {
  207. function.WriteLog(ex.ToString(), "代签约产品通用接口异常");
  208. result = "";
  209. }
  210. return result;
  211. }
  212. //代商户签约,提交信息确认接口
  213. public string CommonSignConfirm(string BatchNo)
  214. {
  215. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  216. AlipayOpenAgentCommonsignConfirmRequest request= new AlipayOpenAgentCommonsignConfirmRequest();
  217. request.BizContent="{" +
  218. "\"batch_no\":\"" + BatchNo + "\"" +
  219. "}";
  220. string result = "";
  221. try
  222. {
  223. AlipayOpenAgentCommonsignConfirmResponse response = client.Execute(request);
  224. result = response.Body;
  225. function.WriteLog(result, "提交信息确认");
  226. //{"alipay_open_agent_order_query_response":{"code":"10000","msg":"Success","order_no":"20220210034000100000015895929361","product_agent_status_infos":[{"product_code":"QUICK_WAP_WAY","product_name":"手机网站支付","status":"WAIT_CONFIRM"}],"order_status":"MERCHANT_CONFIRM","confirm_url":"https:\/\/openhome.alipay.com\/isv\/settling\/confirm.htm?orderNo=20220210034000100000015895929361","merchant_pid":"2088012934025363"},"sign":"mgdhauHMV9352S3FVrQmesXvHOrk633FX/EOXRYdc2ix5phCBZJ2KZRRP9MWJ566YEtWbnQlAJzHVS9X29hjgiJWOQ/wCidql4AoSAYYeqPtxiqKAZw/QEM/du5AdbWC0xBmmkQljXF9Hx8cm+IrOyPMSJXIw4Tqpm/T96YBwhsjw4Xr5dcUcvF6HX9h/i5FSdIJODxQ26PJcqQ98GQ3Y50YhTpPQkIPDFVE2QzcL6dvuhBOpwu5KbTxvgzS8Wtm3G6nMbzJ33Cv/I2lhTCIMHz90c9bvyjJpWxPWBzywO2zzv7+EZCbDkZGkdRic9l5s6qac+ZVMHkPbveaZ2wyig=="}
  227. }
  228. catch (Exception ex)
  229. {
  230. function.WriteLog(ex.ToString(), "接口创建应用事务异常");
  231. result = "";
  232. }
  233. return result;
  234. }
  235. #endregion
  236. #region (查询申请单状态)查询签约申请的结果
  237. public string QuerySignStatus(string BatchNo)
  238. {
  239. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  240. AlipayOpenAgentOrderQueryRequest request= new AlipayOpenAgentOrderQueryRequest() ;
  241. request.BizContent="{" +
  242. " \"batch_no\":\"" + BatchNo + "\"" +
  243. "}";
  244. string result = "";
  245. try
  246. {
  247. AlipayOpenAgentOrderQueryResponse response = client.Execute(request);
  248. result = response.Body;
  249. function.WriteLog(result, "查询签约申请的结果");
  250. }
  251. catch (Exception ex)
  252. {
  253. function.WriteLog(ex.ToString(), "查询签约申请的结果异常");
  254. result = "";
  255. }
  256. return result;
  257. //{"alipay_open_agent_order_query_response":{"code":"10000","msg":"Success","order_no":"20230613034000100000035309978329","product_agent_status_infos":[{"product_code":"FACE_TO_FACE_PAYMENT","product_name":"当面付","status":"WAIT_CONFIRM"}],"order_status":"MERCHANT_CONFIRM","confirm_url":"https:\/\/b.alipay.com\/page\/message\/messageList?type=todoTasks","merchant_pid":"2088641405724089"},"sign":"nwPLGsIQRV25znCK+3G8Pf/sgF7G11jh2QQWwq+UsP2K3FyG9e14x3pPwf0NLOinFHV0AVRI8FhZLbChNl/PUjPzrhoa1OHwB1n4lvo/2uvYVU3KPPV6NKUuxy3YAB6jHDi1AuSqFVOckfm0tvm6p4a/5RYF+3pNEufDISueTdduyvOabcuf7PqQs9J4/7lAmvJxNdxkrgaHrQ4mWk102k2tc657wrRLguUULFF6+j7HtGA4WrAWxrA+KLkzjbFlFu4qtwwZUHpF666mPMQSV0IDEtqiEn3PYDtBztUu9JKTfEoUxlm36pbpp7zynthXAFyMCR8nchsFXxU4bXJcng=="}
  258. }
  259. #endregion
  260. #region 小程序支付请调用MySystemLib下的统一收单交易创建,返回交易号返给小程序请求支付my.tradePay
  261. public string GetToken()
  262. {
  263. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  264. AlipayOpenAuthTokenAppRequest request = new AlipayOpenAuthTokenAppRequest();
  265. request.BizContent = "{" +
  266. "\"grant_type\":\"authorization_code\"," +
  267. "\"code\":\"P16be77ee92264acc99553528b8a7103\"" +
  268. " }";
  269. string result = "";
  270. try
  271. {
  272. AlipayOpenAuthTokenAppResponse response = client.Execute(request);
  273. result = response.Body;
  274. //{"alipay_open_auth_token_app_response":{"code":"10000","msg":"Success","tokens":[{"app_auth_token":"202202BBd8c1365cd09b4a27a0c0f0b7f8cabX03","app_refresh_token":"202202BB539f0f5aa99f4b509aa3628b0af25X03","auth_app_id":"2021003116654736","expires_in":31536000,"re_expires_in":32140800,"user_id":"2088141704579033"}]},"sign":"VZINXguZZFvVDyhVp/iMK5BWXYnDYLvxYEMEZTZOVUl9MUy6xQesDzpwBBUclLLU+QgrKpeekaxj9zgwRXdh7cKlVot2lkVPkGdfkqcK/B9t8kxPXa13WIszcROCqIutlcBZW9pCIUAbWRjorDvzRCc5rLNfSBAjEldZDA0rGOPeWJXM/5uLi/70oTwyO6eaEbKdRyHLjUwp0qtolhXIvyf9HL1HbZMGtyY/Hzq35BmhB/jQ4XIVdcOEpFtNoC/1S/viLOsBCD2m4aNCGUY0i24lr92dRsEinZlCxAQq+FK6ILNUnDmBUjNkPTycDrJFw+w9sEC6AcZodNB6OC8XTw=="}
  275. }
  276. catch (Exception ex)
  277. {
  278. function.WriteLog(ex.ToString(), "支付宝统一收单交易创建(获取authtoken)异常");
  279. result = "";
  280. }
  281. return result;
  282. }
  283. public string CreateTrade(string OrderNo, string Subject, string Amount, string BuyerId, string Notify_Url, string Token)
  284. {
  285. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  286. AlipayTradeCreateRequest request = new AlipayTradeCreateRequest();
  287. request.SetNotifyUrl(Notify_Url);
  288. request.BizContent = "{" +
  289. "\"out_trade_no\":\"" + OrderNo + "\"," +
  290. "\"total_amount\":" + Amount + "," +
  291. "\"subject\":\"" + Subject + "\"," +
  292. "\"buyer_id\":\"" + BuyerId + "\"," +
  293. "\"timeout_express\":\"10m\"" +
  294. "}";
  295. string result = "";
  296. try
  297. {
  298. AlipayTradeCreateResponse response = client.Execute(request, null, Token);
  299. result = response.Body;
  300. }
  301. catch (Exception ex)
  302. {
  303. function.WriteLog(ex.ToString(), "支付宝统一收单交易创建异常");
  304. result = "";
  305. }
  306. return result;
  307. }
  308. public string QueryTrade(string OrderNo, string Token)
  309. {
  310. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  311. AlipayTradeQueryRequest request = new AlipayTradeQueryRequest();
  312. request.BizContent = "{" +
  313. "\"out_trade_no\":\"" + OrderNo + "\"" +
  314. "}";
  315. string result = "";
  316. try
  317. {
  318. AlipayTradeQueryResponse response = client.Execute(request, null, Token);
  319. result = response.Body;
  320. }
  321. catch (Exception ex)
  322. {
  323. function.WriteLog(ex.ToString(), "统一收单线下交易查询异常");
  324. result = "";
  325. }
  326. return result;
  327. }
  328. #endregion
  329. #region 退款
  330. public string Refund(string TradeNo, string Amount, string Reason, string MerToken)
  331. {
  332. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  333. AlipayTradeRefundRequest request = new AlipayTradeRefundRequest();
  334. request.BizContent = "{" +
  335. "\"trade_no\":\"" + TradeNo + "\"," +
  336. "\"refund_amount\":" + Amount + "," +
  337. "\"out_request_no\":\"" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8) + "\"," +
  338. "\"refund_reason\":\"" + Reason + "\"" +
  339. // "\"refund_royalty_parameters\":[{" +
  340. // "\"royalty_type\":\"transfer\"," +
  341. // "\"trans_out_type\":\"userId\"," +
  342. // "\"trans_out\":\"" + MerPid + "\"," +
  343. // "\"amount\":" + Amount + "," +
  344. // "\"desc\":\"" + Reason + "\"" +
  345. // "}]" +
  346. "}";
  347. string result = "";
  348. try
  349. {
  350. AlipayTradeRefundResponse response = client.Execute(request, null, MerToken);
  351. result = response.Body;
  352. }
  353. catch (Exception ex)
  354. {
  355. function.WriteLog(ex.ToString(), "退款异常");
  356. result = "";
  357. }
  358. return result;
  359. }
  360. #endregion
  361. #region 分账
  362. public string Settle(string OrderNo, string TradeNo, List<RoyaltyParameters> Parameters, string MerToken)
  363. {
  364. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  365. AlipayTradeOrderSettleRequest request= new AlipayTradeOrderSettleRequest();
  366. string royalty_parameters = "";
  367. foreach (RoyaltyParameters Parameter in Parameters)
  368. {
  369. royalty_parameters += " {" +
  370. // " \"royalty_type\":\"transfer\"," +
  371. // " \"trans_in_type\":\"loginName\"," +
  372. " \"trans_in\":\"" + Parameter.Account + "\"," +
  373. " \"amount\":" + Parameter.Amount + "" +
  374. // " \"trans_in_name\":\"" + Parameter.Name + "\"" +
  375. " },";
  376. }
  377. request.BizContent = "{" +
  378. " \"out_request_no\":\"" + OrderNo + "\"," +
  379. " \"trade_no\":\"" + TradeNo + "\"," +
  380. " \"royalty_parameters\":[" +
  381. royalty_parameters.TrimEnd(',') +
  382. " ]" +
  383. "}";
  384. string result = "";
  385. try
  386. {
  387. AlipayTradeOrderSettleResponse response = client.Execute(request, null, MerToken);
  388. result = response.Body;
  389. }
  390. catch (Exception ex)
  391. {
  392. function.WriteLog(ex.ToString(), "分账异常");
  393. result = "";
  394. }
  395. return result;
  396. }
  397. #endregion
  398. #region 绑定分账关系
  399. public string BindSettleRelation(string RequestNo, string Account, string MerToken)
  400. {
  401. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  402. AlipayTradeRoyaltyRelationBindRequest request = new AlipayTradeRoyaltyRelationBindRequest();
  403. request.BizContent="{" +
  404. " \"receiver_list\":[" +
  405. " {" +
  406. " \"type\":\"userId\"," +
  407. " \"account\":\"" + Account + "\"" +
  408. // " \"name\":\"测试名称\"," +
  409. // " \"memo\":\"分账给测试商户\"," +
  410. // " \"login_name\":\"test@alitest.xyz\"," +
  411. // " \"bind_login_name\":\"test@alitest.xyz\"" +
  412. " }" +
  413. " ]," +
  414. " \"out_request_no\":\"" + RequestNo + "\"" +
  415. "}";
  416. string result = "";
  417. try
  418. {
  419. AlipayTradeRoyaltyRelationBindResponse response = client.Execute(request, null, MerToken);
  420. result = response.Body;
  421. }
  422. catch (Exception ex)
  423. {
  424. function.WriteLog(ex.ToString(), "绑定分账关系异常");
  425. result = "";
  426. }
  427. return result;
  428. }
  429. #endregion
  430. #region 查看分账
  431. public string QuerySettle(string OrderNo, string TradeNo, string MerToken)
  432. {
  433. IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
  434. AlipayTradeOrderSettleQueryRequest request = new AlipayTradeOrderSettleQueryRequest();
  435. request.BizContent="{" +
  436. " \"out_request_no\":\"" + OrderNo + "\"," +
  437. " \"trade_no\":\"" + TradeNo + "\"" +
  438. "}";
  439. string result = "";
  440. try
  441. {
  442. AlipayTradeOrderSettleQueryResponse response = client.Execute(request, null, MerToken);
  443. result = response.Body;
  444. }
  445. catch (Exception ex)
  446. {
  447. function.WriteLog(ex.ToString(), "分账异常");
  448. result = "";
  449. }
  450. return result;
  451. }
  452. #endregion
  453. }
  454. }