WxPayApi.cs 27 KB

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