最近一直再研究微信支付和支付宝支付,官方支付文档中一直在讲与第三方支付打交道的原理,却没有介绍我们自己项目中的APP与后台该怎么交互(哈哈,人家也没必要介绍这一块)。拜读了官方文档和前辈们的佳作,自己在这里做一些总结。

不管是微信支付还是支付宝支付,使用的是小程序、APP或网页都可以用以下示例图来说明。

支付流程:


  ① 支付端将订单号(小程序中还需要传递登录凭证)传递至后台商户。

  ②后台验证订单、统计订单总价,请求第三方获取下单参数。

  ③第三方返回下单参数。

  ④后台将从第三方返回的参数按需要返回至支付端。

  ⑤支付端拿着后台返回的参数下单。

  ⑥第三方返回支付结果。

  ⑦支付成功后,第三方发起支付回调通知商户后台,在这一步,商户可在回调中修改订单以及用户的相关支付状态。

微信小程序支付:


先放一张官方的图

具体实现:

新建App.Pay项目,在新项目中新建Log类,记录操作过程中的日志。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Web;
  8.  
  9. namespace App.Pay
  10. {
  11. public class Log
  12. {
  13. //在网站根目录下创建日志目录
  14. public string path;
  15.  
  16. public Log(string path)
  17. {
  18. this.path = HttpContext.Current.Request.PhysicalApplicationPath + path;
  19. }
  20. /**
  21. * 向日志文件写入调试信息
  22. * @param className 类名
  23. * @param content 写入内容
  24. */
  25. public void Debug(string className, string content)
  26. {
  27. WriteLog("DEBUG", className, content);
  28. }
  29.  
  30. /**
  31. * 向日志文件写入运行时信息
  32. * @param className 类名
  33. * @param content 写入内容
  34. */
  35. public void Info(string className, string content)
  36. {
  37. WriteLog("INFO", className, content);
  38. }
  39.  
  40. /**
  41. * 向日志文件写入出错信息
  42. * @param className 类名
  43. * @param content 写入内容
  44. */
  45. public void Error(string className, string content)
  46. {
  47. WriteLog("ERROR", className, content);
  48. }
  49.  
  50. /**
  51. * 实际的写日志操作
  52. * @param type 日志记录类型
  53. * @param className 类名
  54. * @param content 写入内容
  55. */
  56. protected void WriteLog(string type, string className, string content)
  57. {
  58. if (!Directory.Exists(path))//如果日志目录不存在就创建
  59. {
  60. Directory.CreateDirectory(path);
  61. }
  62.  
  63. string time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");//获取当前系统时间
  64. string filename = path + "/" + DateTime.Now.ToString("yyyy-MM-dd") + ".log";//用日期对日志文件命名
  65.  
  66. //创建或打开日志文件,向日志文件末尾追加记录
  67. StreamWriter mySw = File.AppendText(filename);
  68.  
  69. //向日志文件写入内容
  70. string write_content = time + " " + type + " " + className + ": " + content;
  71. mySw.WriteLine(write_content);
  72.  
  73. //关闭日志文件
  74. mySw.Close();
  75. }
  76. }
  77. }

新建WePay文件夹,新建Config基类,存放微信支付的公共配置参数。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace App.Pay.WePay
  8. {
  9. /**
  10. * 配置账号信息
  11. */
  12. public class WePayConfig
  13. {
  14. //=======【商户系统后台机器IP】=====================================
  15. /* 此参数可手动配置也可在程序中自动获取
  16. */
  17. public const string IP = "8.8.8.8";
  18.  
  19. //=======【代理服务器设置】===================================
  20. /* 默认IP和端口号分别为0.0.0.0和0,此时不开启代理(如有需要才设置)
  21. */
  22. public const string PROXY_URL = "";
  23.  
  24. //=======【上报信息配置】===================================
  25. /* 测速上报等级,0.关闭上报; 1.仅错误时上报; 2.全量上报
  26. */
  27. public const int REPORT_LEVENL = ;
  28.  
  29. //=======【日志级别】===================================
  30. /* 日志等级,0.不输出日志;1.只输出错误信息; 2.输出错误和正常信息; 3.输出错误信息、正常信息和调试信息
  31. */
  32. public const int LOG_LEVENL = ;
  33. }
  34. }

新建Exception类,捕获微信支付过程中的异常。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace App.Pay.WePay
  8. {
  9. public class WePayException : Exception
  10. {
  11. public WePayException(string msg) : base(msg)
  12. {
  13.  
  14. }
  15. }
  16. }

新建SafeXMLDocument类

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml;
  7.  
  8. namespace App.Pay.WePay
  9. {
  10. public class SafeXmlDocument : XmlDocument
  11. {
  12. public SafeXmlDocument()
  13. {
  14. this.XmlResolver = null;
  15. }
  16. }
  17. }

新建WeHelper类,目前只有一个方法,微信小程序支付中将登录凭证转换为openId。

  1. using App.Common.Extension;
  2. using Newtonsoft.Json.Linq;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Configuration;
  6. using System.Linq;
  7. using System.Net;
  8. using System.Security.Cryptography;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11.  
  12. namespace App.Pay.WePay
  13. {
  14. public class WeHelper
  15. {
  16. // 小程序
  17. private static string _appid = ConfigurationManager.AppSettings["wxAPPID"];
  18. // 小程序
  19. private static string _appSecret = ConfigurationManager.AppSettings["wxAppSecret"];
  20.  
  21. public static WxSession Code2Session(string code)
  22. {
  23. var url = $"https://api.weixin.qq.com/sns/jscode2session?appid={_appid}&secret={_appSecret}&js_code={code}&grant_type=authorization_code";
  24. try
  25. {
  26. var request = WebRequest.Create(url);
  27. using (var response = request.GetResponse())
  28. {
  29. using (var rs = response.GetResponseStream())
  30. {
  31. using (var s = new System.IO.StreamReader(rs))
  32. {
  33. return s.ReadToEnd().JsonTo<WxSession>();
  34. }
  35. }
  36. }
  37. }
  38. catch (Exception)
  39. {
  40. return null;
  41. }
  42. }
  43. }
  44.  
  45. public class WxSession
  46. {
  47. public string openid { get; set; }
  48. public string session_key { get; set; }
  49. public string errcode { get; set; }
  50. public string errMsg { get; set; }
  51. public string unionid { get; set; }
  52. }
  53.  
  54. }

以上四个类是微信支付通用的,因此统一放在了微信支付文件夹下。

新建XcxPay文件夹,用于存放微信小程序支付的文件,新建XcxPayConfig类,存放关于小程序支付参数,小程序APPID、账号Secert、商户号、商户支付密钥、支付回调地址。我把这些参数值都放在了解决方案的config配置文件中。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Web.Configuration;
  7.  
  8. namespace App.Pay.WePay.XcxPay
  9. {
  10. public class XcxPayConfig : WePayConfig
  11. {
  12. //=======【基本信息设置】=====================================
  13. /* 微信公众号信息配置
  14. * APPID:绑定支付的APPID(必须配置)
  15. * MCHID:商户号(必须配置)
  16. * KEY:商户支付密钥,参考开户邮件设置(必须配置)
  17. * APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置)
  18. */
  19. /// 小程序支付
  20. public static string APPID = WebConfigurationManager.AppSettings["XcxAppID"].ToString();
  21. public static string MCHID = WebConfigurationManager.AppSettings["XcxMchID"].ToString();
  22. public static string KEY = WebConfigurationManager.AppSettings["XcxKey"].ToString();
  23. public static string APPSECRET = WebConfigurationManager.AppSettings["XcxAppSecret"].ToString();
  24.  
  25. //=======【证书路径设置】=====================================
  26. /* 证书路径,注意应该填写绝对路径(仅退款、撤销订单时需要)
  27. */
  28. public const string SSLCERT_PATH = "cert/apiclient_cert.p12";
  29. public const string SSLCERT_PASSWORD = "";
  30.  
  31. //=======【支付结果通知url】=====================================
  32. /* 支付结果通知回调url,用于商户接收支付结果
  33. */
  34. public static string NOTIFY_URL = WebConfigurationManager.AppSettings["XcxNotifyUrl"].ToString();
  35.  
  36. // log记录
  37. public static string LogPath = WebConfigurationManager.AppSettings["XcxLog"].ToString();
  38. }
  39. }
  1. <!--小程序支付-->
  2. <add key="XcxAppID" value="" />
  3. <add key="XcxAppSecret" value="" />
  4. <add key="XcxMchID" value="" />
  5. <add key="XcxKey" value="" />
  6. <!--回调通知-->
  7. <add key="XcxNotifyUrl" value="" />

新建WeXcxPayApi类

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace App.Pay.WePay.XcxPay
  8. {
  9. public class XcxPayApi
  10. {
  11. public static Log Log = new Log(XcxPayConfig.LogPath);
  12.  
  13. /**
  14. * 提交被扫支付API
  15. * 收银员使用扫码设备读取微信用户刷卡授权码以后,二维码或条码信息传送至商户收银台,
  16. * 由商户收银台或者商户后台调用该接口发起支付。
  17. * @param WxPayData inputObj 提交给被扫支付API的参数
  18. * @param int timeOut 超时时间
  19. * @throws WePayException
  20. * @return 成功时返回调用结果,其他抛异常
  21. */
  22. public static XcxPayData Micropay(XcxPayData inputObj, int timeOut = )
  23. {
  24. string url = "https://api.mch.weixin.qq.com/pay/micropay";
  25. //检测必填参数
  26. if (!inputObj.IsSet("body"))
  27. {
  28. throw new WePayException("提交被扫支付API接口中,缺少必填参数body!");
  29. }
  30. else if (!inputObj.IsSet("out_trade_no"))
  31. {
  32. throw new WePayException("提交被扫支付API接口中,缺少必填参数out_trade_no!");
  33. }
  34. else if (!inputObj.IsSet("total_fee"))
  35. {
  36. throw new WePayException("提交被扫支付API接口中,缺少必填参数total_fee!");
  37. }
  38. else if (!inputObj.IsSet("auth_code"))
  39. {
  40. throw new WePayException("提交被扫支付API接口中,缺少必填参数auth_code!");
  41. }
  42.  
  43. inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
  44. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  45. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  46. inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", ""));//随机字符串
  47. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  48. string xml = inputObj.ToXml();
  49.  
  50. var start = DateTime.Now;//请求开始时间
  51.  
  52. Log.Info("XcxPayApi", "MicroPay request : " + xml);
  53. string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
  54. Log.Info("XcxPayApi", "MicroPay response : " + response);
  55.  
  56. var end = DateTime.Now;
  57. int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
  58.  
  59. //将xml格式的结果转换为对象以返回
  60. XcxPayData result = new XcxPayData();
  61. result.FromXml(response);
  62.  
  63. ReportCostTime(url, timeCost, result);//测速上报
  64.  
  65. return result;
  66. }
  67.  
  68. /**
  69. *
  70. * 查询订单
  71. * @param WxPayData inputObj 提交给查询订单API的参数
  72. * @param int timeOut 超时时间
  73. * @throws WePayException
  74. * @return 成功时返回订单查询结果,其他抛异常
  75. */
  76. public static XcxPayData OrderQuery(XcxPayData inputObj, int timeOut = )
  77. {
  78. string url = "https://api.mch.weixin.qq.com/pay/orderquery";
  79. //检测必填参数
  80. if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
  81. {
  82. throw new WePayException("订单查询接口中,out_trade_no、transaction_id至少填一个!");
  83. }
  84.  
  85. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  86. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  87. inputObj.SetValue("nonce_str", XcxPayApi.GenerateNonceStr());//随机字符串
  88. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  89.  
  90. string xml = inputObj.ToXml();
  91.  
  92. var start = DateTime.Now;
  93.  
  94. Log.Info("XcxPayApi", "OrderQuery request : " + xml);
  95. string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口提交数据
  96. Log.Info("XcxPayApi", "OrderQuery response : " + response);
  97.  
  98. var end = DateTime.Now;
  99. int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
  100.  
  101. //将xml格式的数据转化为对象以返回
  102. XcxPayData result = new XcxPayData();
  103. result.FromXml(response);
  104.  
  105. ReportCostTime(url, timeCost, result);//测速上报
  106.  
  107. return result;
  108. }
  109.  
  110. /**
  111. *
  112. * 撤销订单API接口
  113. * @param WxPayData inputObj 提交给撤销订单API接口的参数,out_trade_no和transaction_id必填一个
  114. * @param int timeOut 接口超时时间
  115. * @throws WePayException
  116. * @return 成功时返回API调用结果,其他抛异常
  117. */
  118. public static XcxPayData Reverse(XcxPayData inputObj, int timeOut = )
  119. {
  120. string url = "https://api.mch.weixin.qq.com/secapi/pay/reverse";
  121. //检测必填参数
  122. if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
  123. {
  124. throw new WePayException("撤销订单API接口中,参数out_trade_no和transaction_id必须填写一个!");
  125. }
  126.  
  127. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  128. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  129. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  130. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  131. string xml = inputObj.ToXml();
  132.  
  133. var start = DateTime.Now;//请求开始时间
  134.  
  135. Log.Info("XcxPayApi", "Reverse request : " + xml);
  136.  
  137. string response = XcxPayHttpService.Post(xml, url, true, timeOut);
  138.  
  139. Log.Info("XcxPayApi", "Reverse response : " + response);
  140.  
  141. var end = DateTime.Now;
  142. int timeCost = (int)((end - start).TotalMilliseconds);
  143.  
  144. XcxPayData result = new XcxPayData();
  145. result.FromXml(response);
  146.  
  147. ReportCostTime(url, timeCost, result);//测速上报
  148.  
  149. return result;
  150. }
  151.  
  152. /**
  153. *
  154. * 申请退款
  155. * @param WxPayData inputObj 提交给申请退款API的参数
  156. * @param int timeOut 超时时间
  157. * @throws WePayException
  158. * @return 成功时返回接口调用结果,其他抛异常
  159. */
  160. public static XcxPayData Refund(XcxPayData inputObj, int timeOut = )
  161. {
  162. string url = "https://api.mch.weixin.qq.com/secapi/pay/refund";
  163. //检测必填参数
  164. if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
  165. {
  166. throw new WePayException("退款申请接口中,out_trade_no、transaction_id至少填一个!");
  167. }
  168. else if (!inputObj.IsSet("out_refund_no"))
  169. {
  170. throw new WePayException("退款申请接口中,缺少必填参数out_refund_no!");
  171. }
  172. else if (!inputObj.IsSet("total_fee"))
  173. {
  174. throw new WePayException("退款申请接口中,缺少必填参数total_fee!");
  175. }
  176. else if (!inputObj.IsSet("refund_fee"))
  177. {
  178. throw new WePayException("退款申请接口中,缺少必填参数refund_fee!");
  179. }
  180. else if (!inputObj.IsSet("op_user_id"))
  181. {
  182. throw new WePayException("退款申请接口中,缺少必填参数op_user_id!");
  183. }
  184.  
  185. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  186. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  187. inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", ""));//随机字符串
  188. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  189.  
  190. string xml = inputObj.ToXml();
  191. var start = DateTime.Now;
  192.  
  193. Log.Info("XcxPayApi", "Refund request : " + xml);
  194. string response = XcxPayHttpService.Post(xml, url, true, timeOut);//调用HTTP通信接口提交数据到API
  195. Log.Info("XcxPayApi", "Refund response : " + response);
  196.  
  197. var end = DateTime.Now;
  198. int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
  199.  
  200. //将xml格式的结果转换为对象以返回
  201. XcxPayData result = new XcxPayData();
  202. result.FromXml(response);
  203.  
  204. ReportCostTime(url, timeCost, result);//测速上报
  205.  
  206. return result;
  207. }
  208.  
  209. /**
  210. *
  211. * 查询退款
  212. * 提交退款申请后,通过该接口查询退款状态。退款有一定延时,
  213. * 用零钱支付的退款20分钟内到账,银行卡支付的退款3个工作日后重新查询退款状态。
  214. * out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个
  215. * @param WxPayData inputObj 提交给查询退款API的参数
  216. * @param int timeOut 接口超时时间
  217. * @throws WePayException
  218. * @return 成功时返回,其他抛异常
  219. */
  220. public static XcxPayData RefundQuery(XcxPayData inputObj, int timeOut = )
  221. {
  222. string url = "https://api.mch.weixin.qq.com/pay/refundquery";
  223. //检测必填参数
  224. if (!inputObj.IsSet("out_refund_no") && !inputObj.IsSet("out_trade_no") &&
  225. !inputObj.IsSet("transaction_id") && !inputObj.IsSet("refund_id"))
  226. {
  227. throw new WePayException("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!");
  228. }
  229.  
  230. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  231. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  232. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  233. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  234.  
  235. string xml = inputObj.ToXml();
  236.  
  237. var start = DateTime.Now;//请求开始时间
  238.  
  239. Log.Info("XcxPayApi", "RefundQuery request : " + xml);
  240. string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
  241. Log.Info("XcxPayApi", "RefundQuery response : " + response);
  242.  
  243. var end = DateTime.Now;
  244. int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时
  245.  
  246. //将xml格式的结果转换为对象以返回
  247. XcxPayData result = new XcxPayData();
  248. result.FromXml(response);
  249.  
  250. ReportCostTime(url, timeCost, result);//测速上报
  251.  
  252. return result;
  253. }
  254.  
  255. /**
  256. * 下载对账单
  257. * @param WxPayData inputObj 提交给下载对账单API的参数
  258. * @param int timeOut 接口超时时间
  259. * @throws WePayException
  260. * @return 成功时返回,其他抛异常
  261. */
  262. public static XcxPayData DownloadBill(XcxPayData inputObj, int timeOut = )
  263. {
  264. string url = "https://api.mch.weixin.qq.com/pay/downloadbill";
  265. //检测必填参数
  266. if (!inputObj.IsSet("bill_date"))
  267. {
  268. throw new WePayException("对账单接口中,缺少必填参数bill_date!");
  269. }
  270.  
  271. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  272. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  273. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  274. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  275.  
  276. string xml = inputObj.ToXml();
  277.  
  278. Log.Info("XcxPayApi", "DownloadBill request : " + xml);
  279. string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
  280. Log.Info("XcxPayApi", "DownloadBill result : " + response);
  281.  
  282. XcxPayData result = new XcxPayData();
  283. //若接口调用失败会返回xml格式的结果
  284. if (response.Substring(, ) == "<xml>")
  285. {
  286. result.FromXml(response);
  287. }
  288. //接口调用成功则返回非xml格式的数据
  289. else
  290. result.SetValue("result", response);
  291.  
  292. return result;
  293. }
  294.  
  295. /**
  296. *
  297. * 转换短链接
  298. * 该接口主要用于扫码原生支付模式一中的二维码链接转成短链接(weixin://wxpay/s/XXXXXX),
  299. * 减小二维码数据量,提升扫描速度和精确度。
  300. * @param WxPayData inputObj 提交给转换短连接API的参数
  301. * @param int timeOut 接口超时时间
  302. * @throws WePayException
  303. * @return 成功时返回,其他抛异常
  304. */
  305. public static XcxPayData ShortUrl(XcxPayData inputObj, int timeOut = )
  306. {
  307. string url = "https://api.mch.weixin.qq.com/tools/shorturl";
  308. //检测必填参数
  309. if (!inputObj.IsSet("long_url"))
  310. {
  311. throw new WePayException("需要转换的URL,签名用原串,传输需URL encode!");
  312. }
  313.  
  314. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  315. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  316. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  317. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  318. inputObj.SetValue("device_info", "wxAPP");//设备名称
  319. string xml = inputObj.ToXml();
  320.  
  321. var start = DateTime.Now;//请求开始时间
  322.  
  323. Log.Info("XcxPayApi", "ShortUrl request : " + xml);
  324. string response = XcxPayHttpService.Post(xml, url, false, timeOut);
  325. Log.Info("XcxPayApi", "ShortUrl response : " + response);
  326.  
  327. var end = DateTime.Now;
  328. int timeCost = (int)((end - start).TotalMilliseconds);
  329.  
  330. XcxPayData result = new XcxPayData();
  331. result.FromXml(response);
  332. ReportCostTime(url, timeCost, result);//测速上报
  333.  
  334. return result;
  335. }
  336.  
  337. /**
  338. *
  339. * 统一下单
  340. * @param WxPaydata inputObj 提交给统一下单API的参数
  341. * @param int timeOut 超时时间
  342. * @throws WePayException
  343. * @return 成功时返回,其他抛异常
  344. */
  345. public static XcxPayData UnifiedOrder(XcxPayData inputObj, int timeOut = )
  346. {
  347. string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
  348. //检测必填参数
  349. if (!inputObj.IsSet("out_trade_no"))
  350. {
  351. throw new WePayException("缺少统一支付接口必填参数out_trade_no!");
  352. }
  353. else if (!inputObj.IsSet("body"))
  354. {
  355. throw new WePayException("缺少统一支付接口必填参数body!");
  356. }
  357. else if (!inputObj.IsSet("total_fee"))
  358. {
  359. throw new WePayException("缺少统一支付接口必填参数total_fee!");
  360. }
  361. else if (!inputObj.IsSet("trade_type"))
  362. {
  363. throw new WePayException("缺少统一支付接口必填参数trade_type!");
  364. }
  365.  
  366. //关联参数
  367. if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
  368. {
  369. throw new WePayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
  370. }
  371. if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
  372. {
  373. throw new WePayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
  374. }
  375.  
  376. //异步通知url未设置,则使用配置文件中的url
  377. if (!inputObj.IsSet("notify_url"))
  378. {
  379. inputObj.SetValue("notify_url", XcxPayConfig.NOTIFY_URL);//异步通知url
  380. }
  381.  
  382. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  383. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  384. inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
  385. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  386.  
  387. //签名
  388. inputObj.SetValue("sign", inputObj.MakeSign());
  389. string xml = inputObj.ToXml();
  390.  
  391. var start = DateTime.Now;
  392.  
  393. Log.Info("XcxPayApi", "UnfiedOrder request : " + xml);
  394. string response = XcxPayHttpService.Post(xml, url, false, timeOut);
  395. Log.Info("XcxPayApi", "UnfiedOrder response : " + response);
  396.  
  397. var end = DateTime.Now;
  398. int timeCost = (int)((end - start).TotalMilliseconds);
  399.  
  400. XcxPayData result = new XcxPayData();
  401. result.FromXml(response);
  402.  
  403. ReportCostTime(url, timeCost, result);//测速上报
  404.  
  405. return result;
  406. }
  407.  
  408. /**
  409. *
  410. * 统一下单
  411. * @param WxPaydata inputObj 提交给统一下单API的参数
  412. * @param int timeOut 超时时间
  413. * @throws WePayException
  414. * @return 成功时返回,其他抛异常
  415. */
  416. public static XcxPayData UnifiedOrderApp(XcxPayData inputObj, int timeOut = )
  417. {
  418. string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
  419. //检测必填参数
  420. if (!inputObj.IsSet("out_trade_no"))
  421. {
  422. throw new WePayException("缺少统一支付接口必填参数out_trade_no!");
  423. }
  424. else if (!inputObj.IsSet("body"))
  425. {
  426. throw new WePayException("缺少统一支付接口必填参数body!");
  427. }
  428. else if (!inputObj.IsSet("total_fee"))
  429. {
  430. throw new WePayException("缺少统一支付接口必填参数total_fee!");
  431. }
  432. else if (!inputObj.IsSet("trade_type"))
  433. {
  434. throw new WePayException("缺少统一支付接口必填参数trade_type!");
  435. }
  436.  
  437. //关联参数
  438. if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
  439. {
  440. throw new WePayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
  441. }
  442. if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
  443. {
  444. throw new WePayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
  445. }
  446.  
  447. //异步通知url未设置,则使用配置文件中的url
  448. if (!inputObj.IsSet("notify_url"))
  449. {
  450. inputObj.SetValue("notify_url", XcxPayConfig.NOTIFY_URL);//异步通知url
  451. }
  452.  
  453. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  454. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  455. inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
  456. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  457.  
  458. //签名
  459. inputObj.SetValue("sign", inputObj.MakeSign());
  460. string xml = inputObj.ToXml();
  461.  
  462. var start = DateTime.Now;
  463.  
  464. Log.Info("XcxPayApi", "UnfiedOrder request : " + xml);
  465. string response = XcxPayHttpService.Post(xml, url, false, timeOut);
  466. Log.Info("XcxPayApi", "UnfiedOrder response : " + response);
  467.  
  468. var end = DateTime.Now;
  469. int timeCost = (int)((end - start).TotalMilliseconds);
  470.  
  471. XcxPayData result = new XcxPayData();
  472. result.FromXml(response);
  473.  
  474. ReportCostTime(url, timeCost, result);//测速上报
  475.  
  476. return result;
  477. }
  478.  
  479. /**
  480. *
  481. * 关闭订单
  482. * @param WxPayData inputObj 提交给关闭订单API的参数
  483. * @param int timeOut 接口超时时间
  484. * @throws WePayException
  485. * @return 成功时返回,其他抛异常
  486. */
  487. public static XcxPayData CloseOrder(XcxPayData inputObj, int timeOut = )
  488. {
  489. string url = "https://api.mch.weixin.qq.com/pay/closeorder";
  490. //检测必填参数
  491. if (!inputObj.IsSet("out_trade_no"))
  492. {
  493. throw new WePayException("关闭订单接口中,out_trade_no必填!");
  494. }
  495.  
  496. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  497. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  498. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  499. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  500. string xml = inputObj.ToXml();
  501.  
  502. var start = DateTime.Now;//请求开始时间
  503.  
  504. string response = XcxPayHttpService.Post(xml, url, false, timeOut);
  505.  
  506. var end = DateTime.Now;
  507. int timeCost = (int)((end - start).TotalMilliseconds);
  508.  
  509. XcxPayData result = new XcxPayData();
  510. result.FromXml(response);
  511.  
  512. ReportCostTime(url, timeCost, result);//测速上报
  513.  
  514. return result;
  515. }
  516.  
  517. /**
  518. *
  519. * 测速上报
  520. * @param string interface_url 接口URL
  521. * @param int timeCost 接口耗时
  522. * @param WxPayData inputObj参数数组
  523. */
  524. private static void ReportCostTime(string interface_url, int timeCost, XcxPayData inputObj)
  525. {
  526. //如果不需要进行上报
  527. if (WePayConfig.REPORT_LEVENL == )
  528. {
  529. return;
  530. }
  531.  
  532. //如果仅失败上报
  533. if (WePayConfig.REPORT_LEVENL == && inputObj.IsSet("return_code") && inputObj.GetValue("return_code").ToString() == "SUCCESS" &&
  534. inputObj.IsSet("result_code") && inputObj.GetValue("result_code").ToString() == "SUCCESS")
  535. {
  536. return;
  537. }
  538.  
  539. //上报逻辑
  540. XcxPayData data = new XcxPayData();
  541. data.SetValue("interface_url", interface_url);
  542. data.SetValue("execute_time_", timeCost);
  543. //返回状态码
  544. if (inputObj.IsSet("return_code"))
  545. {
  546. data.SetValue("return_code", inputObj.GetValue("return_code"));
  547. }
  548. //返回信息
  549. if (inputObj.IsSet("return_msg"))
  550. {
  551. data.SetValue("return_msg", inputObj.GetValue("return_msg"));
  552. }
  553. //业务结果
  554. if (inputObj.IsSet("result_code"))
  555. {
  556. data.SetValue("result_code", inputObj.GetValue("result_code"));
  557. }
  558. //错误代码
  559. if (inputObj.IsSet("err_code"))
  560. {
  561. data.SetValue("err_code", inputObj.GetValue("err_code"));
  562. }
  563. //错误代码描述
  564. if (inputObj.IsSet("err_code_des"))
  565. {
  566. data.SetValue("err_code_des", inputObj.GetValue("err_code_des"));
  567. }
  568. //商户订单号
  569. if (inputObj.IsSet("out_trade_no"))
  570. {
  571. data.SetValue("out_trade_no", inputObj.GetValue("out_trade_no"));
  572. }
  573. //设备号
  574. if (inputObj.IsSet("device_info"))
  575. {
  576. data.SetValue("device_info", inputObj.GetValue("device_info"));
  577. }
  578.  
  579. try
  580. {
  581. Report(data);
  582. }
  583. catch (WePayException ex)
  584. {
  585. //不做任何处理
  586. }
  587. }
  588.  
  589. /**
  590. *
  591. * 测速上报接口实现
  592. * @param WxPayData inputObj 提交给测速上报接口的参数
  593. * @param int timeOut 测速上报接口超时时间
  594. * @throws WePayException
  595. * @return 成功时返回测速上报接口返回的结果,其他抛异常
  596. */
  597. public static XcxPayData Report(XcxPayData inputObj, int timeOut = )
  598. {
  599. string url = "https://api.mch.weixin.qq.com/payitil/report";
  600. //检测必填参数
  601. if (!inputObj.IsSet("interface_url"))
  602. {
  603. throw new WePayException("接口URL,缺少必填参数interface_url!");
  604. }
  605. if (!inputObj.IsSet("return_code"))
  606. {
  607. throw new WePayException("返回状态码,缺少必填参数return_code!");
  608. }
  609. if (!inputObj.IsSet("result_code"))
  610. {
  611. throw new WePayException("业务结果,缺少必填参数result_code!");
  612. }
  613. if (!inputObj.IsSet("user_ip"))
  614. {
  615. throw new WePayException("访问接口IP,缺少必填参数user_ip!");
  616. }
  617. if (!inputObj.IsSet("execute_time_"))
  618. {
  619. throw new WePayException("接口耗时,缺少必填参数execute_time_!");
  620. }
  621.  
  622. inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
  623. inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
  624. inputObj.SetValue("user_ip", WePayConfig.IP);//终端ip
  625. inputObj.SetValue("time", DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
  626. inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
  627. inputObj.SetValue("sign", inputObj.MakeSign());//签名
  628. string xml = inputObj.ToXml();
  629.  
  630. Log.Info("XcxPayApi", "Report request : " + xml);
  631.  
  632. string response = XcxPayHttpService.Post(xml, url, false, timeOut);
  633.  
  634. Log.Info("XcxPayApi", "Report response : " + response);
  635.  
  636. XcxPayData result = new XcxPayData();
  637. result.FromXml(response);
  638. return result;
  639. }
  640.  
  641. /**
  642. * 根据当前系统时间加随机序列来生成订单号
  643. * @return 订单号
  644. */
  645. public static string GenerateOutTradeNo()
  646. {
  647. var ran = new Random();
  648. return string.Format("{0}{1}{2}", XcxPayConfig.MCHID, DateTime.Now.ToString("yyyyMMddHHmmss"), ran.Next());
  649. }
  650.  
  651. /**
  652. * 生成时间戳,标准北京时间,时区为东八区,自1970年1月1日 0点0分0秒以来的秒数
  653. * @return 时间戳
  654. */
  655. public static string GenerateTimeStamp()
  656. {
  657. TimeSpan ts = DateTime.UtcNow - new DateTime(, , , , , , );
  658. return Convert.ToInt64(ts.TotalSeconds).ToString();
  659. }
  660.  
  661. /**
  662. * 生成随机串,随机串包含字母或数字
  663. * @return 随机串
  664. */
  665. public static string GenerateNonceStr()
  666. {
  667. return Guid.NewGuid().ToString().Replace("-", "");
  668. }
  669. }
  670. }

新建XcxPayData类

  1. using LitJson;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Security.Cryptography;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Xml;
  9.  
  10. namespace App.Pay.WePay.XcxPay
  11. {
  12. /// <summary>
  13. /// 微信支付协议接口数据类,所有的API接口通信都依赖这个数据结构,
  14. /// 在调用接口之前先填充各个字段的值,然后进行接口通信,
  15. /// 这样设计的好处是可扩展性强,用户可随意对协议进行更改而不用重新设计数据结构,
  16. /// 还可以随意组合出不同的协议数据包,不用为每个协议设计一个数据包结构
  17. /// </summary>
  18. public class XcxPayData
  19. {
  20. private Log Log = new Log(XcxPayConfig.LogPath);
  21.  
  22. public XcxPayData()
  23. {
  24. }
  25.  
  26. //采用排序的Dictionary的好处是方便对数据包进行签名,不用再签名之前再做一次排序
  27. private SortedDictionary<string, object> m_values = new SortedDictionary<string, object>();
  28.  
  29. /**
  30. * 设置某个字段的值
  31. * @param key 字段名
  32. * @param value 字段值
  33. */
  34. public void SetValue(string key, object value)
  35. {
  36. m_values[key] = value;
  37. }
  38.  
  39. /**
  40. * 根据字段名获取某个字段的值
  41. * @param key 字段名
  42. * @return key对应的字段值
  43. */
  44. public object GetValue(string key)
  45. {
  46. object o = null;
  47. m_values.TryGetValue(key, out o);
  48. return o;
  49. }
  50.  
  51. /**
  52. * 判断某个字段是否已设置
  53. * @param key 字段名
  54. * @return 若字段key已被设置,则返回true,否则返回false
  55. */
  56. public bool IsSet(string key)
  57. {
  58. object o = null;
  59. m_values.TryGetValue(key, out o);
  60. if (null != o)
  61. return true;
  62. else
  63. return false;
  64. }
  65.  
  66. /**
  67. * @将Dictionary转成xml
  68. * @return 经转换得到的xml串
  69. * @throws WePayException
  70. **/
  71. public string ToXml()
  72. {
  73. //数据为空时不能转化为xml格式
  74. if ( == m_values.Count)
  75. {
  76. Log.Error(this.GetType().ToString(), "WxPayData数据为空!");
  77. throw new WePayException("WxPayData数据为空!");
  78. }
  79.  
  80. string xml = "<xml>";
  81. foreach (KeyValuePair<string, object> pair in m_values)
  82. {
  83. //字段值不能为null,会影响后续流程
  84. if (pair.Value == null)
  85. {
  86. Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
  87. throw new WePayException("WxPayData内部含有值为null的字段!");
  88. }
  89.  
  90. if (pair.Value.GetType() == typeof(int))
  91. {
  92. xml += "<" + pair.Key + ">" + pair.Value + "</" + pair.Key + ">";
  93. }
  94. else if (pair.Value.GetType() == typeof(string))
  95. {
  96. xml += "<" + pair.Key + ">" + "<![CDATA[" + pair.Value + "]]></" + pair.Key + ">";
  97. }
  98. else//除了string和int类型不能含有其他数据类型
  99. {
  100. Log.Error(this.GetType().ToString(), "WxPayData字段数据类型错误!");
  101. throw new WePayException("WxPayData字段数据类型错误!");
  102. }
  103. }
  104. xml += "</xml>";
  105. return xml;
  106. }
  107.  
  108. /**
  109. * @将xml转为WxPayData对象并返回对象内部的数据
  110. * @param string 待转换的xml串
  111. * @return 经转换得到的Dictionary
  112. * @throws WePayException
  113. */
  114. public SortedDictionary<string, object> FromXml(string xml)
  115. {
  116. if (string.IsNullOrEmpty(xml))
  117. {
  118. Log.Error(this.GetType().ToString(), "将空的xml串转换为WxPayData不合法!");
  119. throw new WePayException("将空的xml串转换为WxPayData不合法!");
  120. }
  121.  
  122. SafeXmlDocument xmlDoc = new SafeXmlDocument();
  123. xmlDoc.LoadXml(xml);
  124. XmlNode xmlNode = xmlDoc.FirstChild;//获取到根节点<xml>
  125. XmlNodeList nodes = xmlNode.ChildNodes;
  126. foreach (XmlNode xn in nodes)
  127. {
  128. XmlElement xe = (XmlElement)xn;
  129. m_values[xe.Name] = xe.InnerText;//获取xml的键值对到WxPayData内部的数据中
  130. }
  131.  
  132. try
  133. {
  134. //2015-06-29 错误是没有签名
  135. if (m_values["return_code"] != "SUCCESS")
  136. {
  137. return m_values;
  138. }
  139. CheckSign();//验证签名,不通过会抛异常
  140. }
  141. catch (WePayException ex)
  142. {
  143. throw new WePayException(ex.Message);
  144. }
  145.  
  146. return m_values;
  147. }
  148.  
  149. /**
  150. * @Dictionary格式转化成url参数格式
  151. * @ return url格式串, 该串不包含sign字段值
  152. */
  153. public string ToUrl()
  154. {
  155. string buff = "";
  156. foreach (KeyValuePair<string, object> pair in m_values)
  157. {
  158. if (pair.Value == null)
  159. {
  160. Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
  161. throw new WePayException("WxPayData内部含有值为null的字段!");
  162. }
  163.  
  164. if (pair.Key != "sign" && pair.Value.ToString() != "")
  165. {
  166. buff += pair.Key + "=" + pair.Value + "&";
  167. }
  168. }
  169. buff = buff.Trim('&');
  170. return buff;
  171. }
  172.  
  173. /**
  174. * @Dictionary格式化成Json
  175. * @return json串数据
  176. */
  177. public string ToJson()
  178. {
  179. string jsonStr = JsonMapper.ToJson(m_values);
  180. return jsonStr;
  181. }
  182.  
  183. /**
  184. * @values格式化成能在Web页面上显示的结果(因为web页面上不能直接输出xml格式的字符串)
  185. */
  186. public string ToPrintStr()
  187. {
  188. string str = "";
  189. foreach (KeyValuePair<string, object> pair in m_values)
  190. {
  191. if (pair.Value == null)
  192. {
  193. Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
  194. throw new WePayException("WxPayData内部含有值为null的字段!");
  195. }
  196.  
  197. str += string.Format("{0}={1}<br>", pair.Key, pair.Value.ToString());
  198. }
  199. Log.Info(this.GetType().ToString(), "Print in Web Page : " + str);
  200. return str;
  201. }
  202.  
  203. /**
  204. * @生成签名,详见签名生成算法
  205. * @return 签名, sign字段不参加签名
  206. */
  207. public string MakeSign()
  208. {
  209. //转url格式
  210. string str = ToUrl();
  211. //在string后加入API KEY
  212. str += "&key=" + XcxPayConfig.KEY;
  213. //MD5加密
  214. var md5 = MD5.Create();
  215. var bs = md5.ComputeHash(Encoding.UTF8.GetBytes(str));
  216. var sb = new StringBuilder();
  217. foreach (byte b in bs)
  218. {
  219. sb.Append(b.ToString("x2"));
  220. }
  221. //所有字符转为大写
  222. return sb.ToString().ToUpper();
  223. }
  224.  
  225. /**
  226. *
  227. * 检测签名是否正确
  228. * 正确返回true,错误抛异常
  229. */
  230. public bool CheckSign()
  231. {
  232. //如果没有设置签名,则跳过检测
  233. if (!IsSet("sign"))
  234. {
  235. Log.Error(this.GetType().ToString(), "WxPayData签名存在但不合法!");
  236. throw new WePayException("WxPayData签名存在但不合法!");
  237. }
  238. //如果设置了签名但是签名为空,则抛异常
  239. else if (GetValue("sign") == null || GetValue("sign").ToString() == "")
  240. {
  241. Log.Error(this.GetType().ToString(), "WxPayData签名存在但不合法!");
  242. throw new WePayException("WxPayData签名存在但不合法!");
  243. }
  244.  
  245. //获取接收到的签名
  246. string return_sign = GetValue("sign").ToString();
  247.  
  248. //在本地计算新的签名
  249. string cal_sign = MakeSign();
  250.  
  251. if (cal_sign == return_sign)
  252. {
  253. return true;
  254. }
  255.  
  256. Log.Error(this.GetType().ToString(), "WxPayData签名验证错误!");
  257. throw new WePayException("WxPayData签名验证错误!");
  258. }
  259.  
  260. /**
  261. * @获取Dictionary
  262. */
  263. public SortedDictionary<string, object> GetValues()
  264. {
  265. return m_values;
  266. }
  267. }
  268. }

新建XcxPayHttpService类,封装了POST请求和Get请求,在这里,我们只使用了POST请求。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Net.Security;
  7. using System.Security.Cryptography.X509Certificates;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Web;
  11.  
  12. namespace App.Pay.WePay.XcxPay
  13. {
  14. public class XcxPayHttpService
  15. {
  16. private static Log Log = new Log(XcxPayConfig.LogPath);
  17.  
  18. public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  19. {
  20. //直接确认,否则打不开
  21. return true;
  22. }
  23.  
  24. public static string Post(string xml, string url, bool isUseCert, int timeout)
  25. {
  26. System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接
  27.  
  28. string result = "";//返回结果
  29.  
  30. HttpWebRequest request = null;
  31. HttpWebResponse response = null;
  32. Stream reqStream = null;
  33.  
  34. try
  35. {
  36. //设置最大连接数
  37. ServicePointManager.DefaultConnectionLimit = ;
  38. //设置https验证方式
  39. if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  40. {
  41. ServicePointManager.ServerCertificateValidationCallback =
  42. new RemoteCertificateValidationCallback(CheckValidationResult);
  43. }
  44.  
  45. /***************************************************************
  46. * 下面设置HttpWebRequest的相关属性
  47. * ************************************************************/
  48. request = (HttpWebRequest)WebRequest.Create(url);
  49.  
  50. request.Method = "POST";
  51. request.Timeout = timeout * ;
  52.  
  53. //设置代理服务器
  54. //WebProxy proxy = new WebProxy(); //定义一个网关对象
  55. //proxy.Address = new Uri(WxPayConfig.PROXY_URL); //网关服务器端口:端口
  56. //request.Proxy = proxy;
  57.  
  58. //设置POST的数据类型和长度
  59. request.ContentType = "text/xml";
  60. byte[] data = System.Text.Encoding.UTF8.GetBytes(xml);
  61. request.ContentLength = data.Length;
  62.  
  63. //是否使用证书
  64. if (isUseCert)
  65. {
  66. string path = HttpContext.Current.Request.PhysicalApplicationPath;
  67. X509Certificate2 cert = new X509Certificate2(path + XcxPayConfig.SSLCERT_PATH, XcxPayConfig.SSLCERT_PASSWORD);
  68. request.ClientCertificates.Add(cert);
  69. Log.Info("XcxPayHttpService", "PostXml used cert");
  70. }
  71.  
  72. //往服务器写入数据
  73. reqStream = request.GetRequestStream();
  74. reqStream.Write(data, , data.Length);
  75. reqStream.Close();
  76.  
  77. //获取服务端返回
  78. response = (HttpWebResponse)request.GetResponse();
  79.  
  80. //获取服务端返回数据
  81. StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  82. result = sr.ReadToEnd().Trim();
  83. sr.Close();
  84. }
  85. catch (System.Threading.ThreadAbortException e)
  86. {
  87. Log.Error("XcxPayHttpService", "Thread - caught ThreadAbortException - resetting.");
  88. Log.Error("Exception message: {0}", e.Message);
  89. System.Threading.Thread.ResetAbort();
  90. }
  91. catch (WebException e)
  92. {
  93. Log.Error("XcxPayHttpService", e.ToString());
  94. if (e.Status == WebExceptionStatus.ProtocolError)
  95. {
  96. Log.Error("XcxPayHttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
  97. Log.Error("XcxPayHttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
  98. }
  99. throw new WePayException(e.ToString());
  100. }
  101. catch (Exception e)
  102. {
  103. Log.Error("XcxPayHttpService", e.ToString());
  104. throw new WePayException(e.ToString());
  105. }
  106. finally
  107. {
  108. //关闭连接和流
  109. if (response != null)
  110. {
  111. response.Close();
  112. }
  113. if (request != null)
  114. {
  115. request.Abort();
  116. }
  117. }
  118. return result;
  119. }
  120.  
  121. /// <summary>
  122. /// 处理http GET请求,返回数据
  123. /// </summary>
  124. /// <param name="url">请求的url地址</param>
  125. /// <returns>http GET成功后返回的数据,失败抛WebException异常</returns>
  126. public static string Get(string url)
  127. {
  128. System.GC.Collect();
  129. string result = "";
  130.  
  131. HttpWebRequest request = null;
  132. HttpWebResponse response = null;
  133.  
  134. //请求url以获取数据
  135. try
  136. {
  137. //设置最大连接数
  138. ServicePointManager.DefaultConnectionLimit = ;
  139. //设置https验证方式
  140. if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  141. {
  142. ServicePointManager.ServerCertificateValidationCallback =
  143. new RemoteCertificateValidationCallback(CheckValidationResult);
  144. }
  145.  
  146. /***************************************************************
  147. * 下面设置HttpWebRequest的相关属性
  148. * ************************************************************/
  149. request = (HttpWebRequest)WebRequest.Create(url);
  150.  
  151. request.Method = "GET";
  152.  
  153. //设置代理
  154. //WebProxy proxy = new WebProxy();
  155. //proxy.Address = new Uri(WxPayConfig.PROXY_URL);
  156. //request.Proxy = proxy;
  157.  
  158. //获取服务器返回
  159. response = (HttpWebResponse)request.GetResponse();
  160.  
  161. //获取HTTP返回数据
  162. StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  163. result = sr.ReadToEnd().Trim();
  164. sr.Close();
  165. }
  166. catch (System.Threading.ThreadAbortException e)
  167. {
  168. Log.Error("XcxPayHttpService", "Thread - caught ThreadAbortException - resetting.");
  169. Log.Error("Exception message: {0}", e.Message);
  170. System.Threading.Thread.ResetAbort();
  171. }
  172. catch (WebException e)
  173. {
  174. Log.Error("XcxPayHttpService", e.ToString());
  175. if (e.Status == WebExceptionStatus.ProtocolError)
  176. {
  177. Log.Error("XcxPayHttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
  178. Log.Error("XcxPayHttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
  179. }
  180. throw new WePayException(e.ToString());
  181. }
  182. catch (Exception e)
  183. {
  184. Log.Error("XcxPayHttpService", e.ToString());
  185. throw new WePayException(e.ToString());
  186. }
  187. finally
  188. {
  189. //关闭连接和流
  190. if (response != null)
  191. {
  192. response.Close();
  193. }
  194. if (request != null)
  195. {
  196. request.Abort();
  197. }
  198. }
  199. return result;
  200. }
  201. }
  202. }

新建XcxPayNotify类,回调处理基类,负责接收微信支付后台发送过来的数据,并对数据进行签名验证。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Web;
  7.  
  8. namespace App.Pay.WePay.XcxPay
  9. {
  10. /// <summary>
  11. /// 回调处理基类
  12. /// 主要负责接收微信支付后台发送过来的数据,对数据进行签名验证
  13. /// 子类在此类基础上进行派生并重写自己的回调处理过程
  14. /// </summary>
  15. public class XcxPayNotify
  16. {
  17. public HttpContext context { get; set; }
  18.  
  19. public Log Log = new Log(XcxPayConfig.LogPath);
  20.  
  21. public XcxPayNotify(HttpContext context)
  22. {
  23. this.context = context;
  24. }
  25.  
  26. /// <summary>
  27. /// 接收从微信支付后台发送过来的数据并验证签名
  28. /// </summary>
  29. /// <returns>微信支付后台返回的数据</returns>
  30. public XcxPayData GetNotifyData()
  31. {
  32. //接收从微信后台POST过来的数据
  33. System.IO.Stream s = context.Request.InputStream;
  34. int count = ;
  35. byte[] buffer = new byte[];
  36. StringBuilder builder = new StringBuilder();
  37. while ((count = s.Read(buffer, , )) > )
  38. {
  39. builder.Append(Encoding.UTF8.GetString(buffer, , count));
  40. }
  41. s.Flush();
  42. s.Close();
  43. s.Dispose();
  44.  
  45. //转换数据格式并验证签名
  46. XcxPayData data = new XcxPayData();
  47. try
  48. {
  49. data.FromXml(builder.ToString());
  50. }
  51. catch (WePayException ex)
  52. {
  53. //若签名错误,则立即返回结果给微信支付后台
  54. XcxPayData res = new XcxPayData();
  55. res.SetValue("return_code", "FAIL");
  56. res.SetValue("return_msg", ex.Message);
  57. Log.Error(this.GetType().ToString(), "Sign check error : " + res.ToXml());
  58. context.Response.Write(res.ToXml());
  59. context.Response.End();
  60. }
  61.  
  62. Log.Info(this.GetType().ToString(), "Check sign success");
  63. return data;
  64. }
  65.  
  66. //派生类需要重写这个方法,进行不同的回调处理
  67. public virtual void ProcessNotify()
  68. {
  69.  
  70. }
  71. }
  72. }

至此,小程序支付的架子我们已经搭建好了,接下来,就是在我们的业务中去使用这个架子。

  1. using App.Pay.WePay;
  2. using App.Pay.WePay.XcxPay;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Web.Configuration;
  8. using System.Web.Mvc;
  9.  
  10. namespace App.WebTest.Controllers
  11. {
  12. /// <summary>
  13. /// 微信小程序支付
  14. /// </summary>
  15. public class WeXcxPayController : BaseController
  16. {
  17. /// <summary>
  18. /// 小程序下单
  19. /// </summary>
  20. /// <param name="oIds">订单Id</param>
  21. /// <param name="code">临时登录凭证</param>
  22. /// <returns></returns>
  23. public ActionResult WeXcxPay(int[] oIds, string code)
  24. {
  25. #region 验证订单是否有效,并合计价格
  26.  
  27. //订单价格
  28. decimal payPrice = ;
  29.  
  30. //订单描述
  31. string detail = "";
  32.  
  33. //验证订单.....
  34.  
  35. #endregion
  36.  
  37. #region 统一下单
  38.  
  39. try
  40. {
  41. //支付回调通知地址
  42. var address = WebConfigurationManager.AppSettings["WxXcxNotifyUrl"].ToString();
  43. XcxPayData data = new XcxPayData();
  44. data.SetValue("body", "商品购买");
  45.  
  46. //可以将用户Id和订单Id同时封装在attach中
  47. data.SetValue("attach", String.Join(",", oIds).ToString());
  48. Random rd = new Random();
  49.  
  50. //外部商户订单号
  51. var payNum = DateTime.Now.ToString("yyyyMMddHHmmss") + rd.Next(, ).ToString().PadLeft(, '');
  52. data.SetValue("out_trade_no", payNum);
  53. data.SetValue("detail", detail.Substring(, detail.Length - ));
  54. data.SetValue("total_fee", Convert.ToInt32(payPrice * ));
  55. data.SetValue("time_start", DateTime.Now.ToString("yyyyMMddHHmmss"));
  56. data.SetValue("time_expire", DateTime.Now.AddMinutes().ToString("yyyyMMddHHmmss"));
  57. data.SetValue("notify_url", address);
  58. //data.SetValue("goods_tag", "test");
  59. data.SetValue("trade_type", "JSAPI");
  60. data.SetValue("openid", WeHelper.Code2Session(code).openid);
  61.  
  62. XcxPayData result = XcxPayApi.UnifiedOrder(data);
  63. var flag = true;
  64. var msg = "";
  65. var nonceStr = "";
  66. var appId = "";
  67. var package = "";
  68. var mch_id = "";
  69. if (!result.IsSet("appid") || !result.IsSet("prepay_id") || result.GetValue("prepay_id").ToString() == "")
  70. {
  71. flag = false;
  72. msg = "下单失败";
  73. return Json(new { Result = false, Msg = "下单失败!" });
  74. }
  75. else
  76. {
  77. //统一下单
  78.  
  79. ///TO Do......
  80. /// 修改订单状态
  81.  
  82. nonceStr = result.GetValue("nonce_str").ToString();
  83. appId = result.GetValue("appid").ToString();
  84. mch_id = result.GetValue("mch_id").ToString();
  85. package = "prepay_id=" + result.GetValue("prepay_id").ToString();
  86. }
  87. var signType = "MD5";
  88. var timeStamp = ((DateTime.Now.Ticks - TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(, , )).Ticks) / ).ToString();
  89. XcxPayData applet = new XcxPayData();
  90. applet.SetValue("appId", appId);
  91. applet.SetValue("nonceStr", nonceStr);
  92. applet.SetValue("package", package);
  93. applet.SetValue("signType", signType);
  94. applet.SetValue("timeStamp", timeStamp);
  95. var appletSign = applet.MakeSign();
  96. return Json(new { timeStamp, nonceStr, package, signType, paySign = appletSign, Result = flag, msg });
  97. }
  98. catch (Exception ex)
  99. {
  100. return Json(new { Result = false, msg = "缺少参数" });
  101. }
  102. #endregion
  103. }
  104.  
  105. /// <summary>
  106. /// 微信小程序支付回调通知
  107. /// </summary>
  108. /// <returns></returns>
  109. public void WeXcxNotifyUrl()
  110. {
  111. Pay.Log Log = new Pay.Log(XcxPayConfig.LogPath);
  112. Log.Info("WxXcxNotifyUrl", "支付回调");
  113. XcxPayNotify notify = new XcxPayNotify(System.Web.HttpContext.Current);
  114. XcxPayData notifyData = notify.GetNotifyData();
  115.  
  116. //检查支付结果中transaction_id是否存在
  117. if (!notifyData.IsSet("transaction_id"))
  118. {
  119. //若transaction_id不存在,则立即返回结果给微信支付后台
  120. XcxPayData res = new XcxPayData();
  121. res.SetValue("return_code", "FAIL");
  122. res.SetValue("return_msg", "支付结果中微信订单号不存在");
  123. Log.Error(this.GetType().ToString(), "The Pay result is error : " + res.ToXml());
  124. Response.Write(res.ToXml());
  125. Response.End();
  126. }
  127.  
  128. string transaction_id = notifyData.GetValue("transaction_id").ToString();
  129.  
  130. //查询订单,判断订单真实性
  131. if (!XcxQueryOrder(transaction_id))
  132. {
  133. //若订单查询失败,则立即返回结果给微信支付后台
  134. XcxPayData res = new XcxPayData();
  135. res.SetValue("return_code", "FAIL");
  136. res.SetValue("return_msg", "订单查询失败");
  137. Log.Error(this.GetType().ToString(), "Order query failure : " + res.ToXml());
  138.  
  139. Response.Write(res.ToXml());
  140. Response.End();
  141. }
  142. //查询订单成功
  143. else
  144. {
  145. XcxPayData res = new XcxPayData();
  146. res.SetValue("return_code", "SUCCESS");
  147. res.SetValue("return_msg", "OK");
  148. Log.Info(this.GetType().ToString(), "Order query success : " + res.ToXml());
  149. Log.Info(this.GetType().ToString(), "Order query success,notifyData : " + notifyData.ToXml());
  150. var returnCode = notifyData.GetValue("return_code").ToString();
  151. var transactionNo = transaction_id;//微信订单号
  152. var outTradeNo = notifyData.GetValue("out_trade_no").ToString();//自定义订单号
  153. var attach = notifyData.GetValue("attach").ToString();//身份证
  154. var endTime = notifyData.GetValue("time_end").ToString();//交易结束时间
  155. //var body = notifyData.GetValue("body").ToString();//projectIdlist
  156. var totalFee = notifyData.GetValue("total_fee").ToString(); ;//支付金额
  157.  
  158. int userId = Convert.ToInt32(attach.Split('|')[]);
  159. string msg;
  160. try
  161. {
  162. //var result = OrderBll.Value.CompleteWePay(userId, totalFee, transactionNo, returnCode, outTradeNo, attach, endTime, out msg);
  163.  
  164. var result = true;
  165.  
  166. Log.Info(this.GetType().ToString(), "CompleteWePay:" + result);
  167. }
  168. catch (Exception e)
  169. {
  170. Log.Error(this.GetType().ToString(), "CompleteWePay:" + e.ToString());
  171. }
  172.  
  173. Response.Write(res.ToXml());
  174. Response.End();
  175. }
  176. }
  177.  
  178. /// <summary>
  179. /// 查询订单
  180. /// </summary>
  181. /// <param name="transaction_id">微信交易订单号</param>
  182. /// <returns></returns>
  183. private bool XcxQueryOrder(string transaction_id)
  184. {
  185. XcxPayData req = new XcxPayData();
  186. req.SetValue("transaction_id", transaction_id);
  187. XcxPayData res = XcxPayApi.OrderQuery(req);
  188. if (res.GetValue("return_code").ToString() == "SUCCESS" && res.GetValue("result_code").ToString() == "SUCCESS")
  189. {
  190. return true;
  191. }
  192. else
  193. {
  194. return false;
  195. }
  196. }
  197. }
  198. }

注意:扩展一个对象反序列化的方法(WeHelper类中将code转化为Session用到),如果不想添加扩展,也可以直接引用JsonConvert包的DeserializeObject反序列化方法即可。

  1. public static class Serialize
  2. {
  3. public static string ToJson(this object obj)
  4. {
  5. return JsonConvert.SerializeObject(obj);
  6. }
  7.  
  8. public static T JsonTo<T>(this string obj)
  9. {
  10. return (T)JsonConvert.DeserializeObject(obj, typeof(T));
  11. }
  12. }

支付完成后,微信会把相关支付信息通知支付回调接口发送给商户,商户在回调接口中接收处理,并返回应答。注意,支付回调接口必须要在外网可以访问到、不能有身份验证(允许匿名访问)、接口无异常,此外如果微信收到商户的应答不是成功或超时,微信会认为通知失败,微信会通过一定的策略定期重新发起通知,尽可能提高通知的成功率(通知频率15/15/30/180/1800/1800/1800/1800/3600,单位:秒)。

源码:https://github.com/wenha/Utility

.Net后台实现微信小程序支付的更多相关文章

  1. 【原创】微信小程序支付java后台案例(公众号支付同适用)(签名错误问题)

    前言 1.微信小程序支付官方接口文档:[点击查看微信开放平台api开发文档]2.遇到的坑:预支付统一下单签名结果返回[签名错误]失败,建议用官方[签名验证工具]检查签名是否存在问题.3.遇到的坑:签名 ...

  2. 微信小程序支付源码,后台服务端代码

    作者:尹华南,来自原文地址 微信小程序支付绕坑指南 步骤 A:小程序向服务端发送商品详情.金额.openid B:服务端向微信统一下单 C:服务器收到返回信息二次签名发回给小程序 D:小程序发起支付 ...

  3. 微信小程序支付及退款流程详解

    微信小程序的支付和退款流程 近期在做微信小程序时,涉及到了小程序的支付和退款流程,所以也大概的将这方面的东西看了一个遍,就在这篇博客里总结一下. 首先说明一下,微信小程序支付的主要逻辑集中在后端,前端 ...

  4. 微信小程序支付接入注意点

    一.微信支付后台服务器部署 服务器采用ubuntu16.04 + php7.0 + apache2.0. 微信支付后台服务使用了curl 和 samplexml ,因此php.ini配置中必须开启这两 ...

  5. 微信小程序支付接入实战

    1. 微信小程序支付接入实战 1.1. 需求   最近接到一个小程序微信支付的需求,需要我写后台支持,本着能不自己写就不自己写的cv原则,在网上找到了些第三方程序,经过尝试后,最后决定了这不要脸作者的 ...

  6. SpringBoot2.0微信小程序支付多次回调问题

    SpringBoot2.0微信小程序支付多次回调问题 WxJava - 微信开发 Java SDK(开发工具包); 支持包括微信支付.开放平台.公众号.企业微信/企业号.小程序等微信功能的后端开发. ...

  7. .NET Core 微信小程序支付——(统一下单)

    最近公司研发了几个电商小程序,还有一个核心的电商直播,只要是电商一般都会涉及到交易信息,离不开支付系统,这里我们统一实现小程序的支付流程(与服务号实现步骤一样). 目录1.开通小程序的支付能力2.商户 ...

  8. Java实现微信小程序支付(完整版)

    在开发微信小程序支付的功能前,我们先熟悉下微信小程序支付的业务流程图: 不熟悉流程的建议还是仔细阅读微信官方的开发者文档. 一,准备工作 事先需要申请企业版小程序,并开通“微信支付”(即商户功能).并 ...

  9. 微信小程序支付功能 C# .NET开发

    微信小程序支付功能的开发的时候坑比较多,不过对于钱的事谨慎也是好事.网上关于小程序支付的实例很多,但是大多多少有些问题,C#开发的更少.此篇文档的目的是讲开发过程中遇到的问题做一个备注,也方便其他开发 ...

随机推荐

  1. java篇 之 继承

    this代表正在使用类的对象(的引用) java支持重载:允许在同一个类中使用相同的方法名(重载类型只区分参数列表,包括参数 顺序,参数个数,参数数据类型,与方法返回类型无关) 匹配: 方法名 参数列 ...

  2. 【MySQL】完整性约束

    " 目录 not null default unique 单列唯一 联合唯一 primary key 单列主键 复合主键 auto_increment 步长与偏移量 foreign key ...

  3. idea 快捷使用(三)中断Debug的使用

    想要在Debug的时候,中断请求,不要再走剩余的流程了? 不需要关闭服务重新启动程序,可以通过Force Return,即强制返回来避免后续的流程. 点击Force Return,弹出Return V ...

  4. SpringCloud或SpringBoot+Mybatis-Plus利用mybatis插件实现数据操作记录及更新对比

    引文 本文主要介绍如何使用mybatis插件实现拦截数据库操作并根据不同需求进行数据对比分析,主要适用于系统中需要对数据操作进行记录.在更新数据时准确记录更新字段 核心:mybatis插件(拦截器). ...

  5. EF中 GroupJoin 与 Join

    数据: GroupJoin: 返回左表所有数据 using (tempdbEntities context = new tempdbEntities()) { var query = context. ...

  6. Linux 笔记:路径

    路径 pwd:查看当前路径 cd xxx:进入指定路径 路径中的一些特殊代表符号: .:当前路径 ..:上一级路径 -:上次访问的路径 /:根路径 ~:当前用户的主目录路径

  7. Springboot学习:核心配置文件

    核心配置文件介绍 SpringBoot使用一个全局配置文件,配置文件名是固定的 application.properties application.yml 配置文件的作用:修改SpringBoot自 ...

  8. 吴裕雄--天生自然Numpy库学习笔记:NumPy 线性代数

    import numpy.matlib import numpy as np a = np.array([[1,2],[3,4]]) b = np.array([[11,12],[13,14]]) p ...

  9. 验证码 倒计时 vue 操作对象

    //html <input type="number" v-model="phoneNumber" placeholder="请输入手机号&qu ...

  10. html5或者移动端暴力定位城市-高德地图,可以取到当前的城市code,亲测好用

    复制 粘贴到html中打开!!!!! <!doctype html> <html> <head> <meta charset="utf-8" ...