WxPayApi.cs 23 KB

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