一、微信小程序支付
1、微信小程序端请求支付接口
商户在小程序中先调用该接口在微信支付服务后台生成预支付交易单,返回正确的预支付交易后调起支付。具体可以查看接口示例。
接口传入参数示例:
<xml> <appid>wx2421b1c4370ec43bappid> <attach>支付测试attach> <body>JSAPI支付测试body> <mch_id>10000100mch_id> <nonce_str>1add1a30ac87aa2db72f57a2375d8fecnonce_str> <notify_url>http://wxpay.wxutil.com/pub_v2/pay/notify.v2.phpnotify_url> <openid>oUpF8uMuAJO_M2pxb1Q9zNjWeS6oopenid> <out_trade_no>1415659990out_trade_no> <spbill_create_ip>14.23.150.211spbill_create_ip> <total_fee>1total_fee> <trade_type>JSAPItrade_type> <sign>0CB01533B8C1EF103065174F50BCA001sign> xml>
接口返回示例:
<xml> <return_code>SUCCESS]]>return_code> <return_msg>OK]]>return_msg> <appid>wx2421b1c4370ec43b]]>appid> <mch_id>10000100]]>mch_id> <nonce_str>IITRi8Iabbblz1Jc]]>nonce_str> <openid>oUpF8uMuAJO_M2pxb1Q9zNjWeS6o]]>openid> <sign>7921E432F65EB8ED0CE9755F0E86D72F]]>sign> <result_code>SUCCESS]]>result_code> <prepay_id>wx201411101639507cbf6ffd8b0779950874]]>prepay_id> <trade_type>JSAPI]]>trade_type> xml>
二、接口调用(C#)
1、支付接口方法
//获取请求数据 Dictionary<string, string> strParam = new Dictionary<string, string>(); //小程序ID strParam.Add("appid", PayInfo.appid); //附加数据 strParam.Add("attach", PayInfo.attach); //商品描述 strParam.Add("body", PayInfo.body); //商户号 strParam.Add("mch_id", PayInfo.mchid); //随机字符串 strParam.Add("nonce_str", PayInfo.nonceStr); //通知地址 (异步接收微信支付结果通知的回调地址,通知url必须为外网可访问的url,不能携带参数。) strParam.Add("notify_url", PayInfo.notifyUrl); //用户标识 strParam.Add("openid", openId); //商户订单号 strParam.Add("out_trade_no", orderNum); //终端IP strParam.Add("spbill_create_ip", PayInfo.addrIp); //标价金额 strParam.Add("total_fee", Convert.ToInt32(orderTotal * 100).ToString()); //交易类型 strParam.Add("trade_type", PayInfo.tradeType); strParam.Add("sign", PayHelper.GetSignInfo(strParam, PayInfo.key)); //获取预支付ID string preInfo = Utility.PostHttpResponse(PayInfo.orderUrl, PayHelper.CreateXmlParam(strParam)); string strCode = PayHelper.GetXmlValue(preInfo, "return_code"); string strMsg = PayHelper.GetXmlValue(preInfo, "return_msg"); if (strCode == "SUCCESS") { //再次签名 string nonecStr = PayInfo.nonceStr; string timeStamp = PayInfo.timeStamp; string package = "prepay_id=" + PayHelper.GetXmlValue(preInfo, "prepay_id"); Dictionary<string, string> singInfo = new Dictionary<string, string>(); singInfo.Add("appId", PayInfo.appid); singInfo.Add("nonceStr", nonecStr); singInfo.Add("package", package); singInfo.Add("signType", PayInfo.signType); singInfo.Add("timeStamp", timeStamp); //返回参数 info.Msg = strMsg; info.Code = strCode; info.Id = orderId; info.appId = PayInfo.appid; info.orderGuId = orderNum; info.Package = package; info.TimeStamp = timeStamp; info.NonceStr = nonecStr; info.SignType = PayInfo.signType; info.PaySign = PayHelper.GetSignInfo(singInfo, PayInfo.key); listMsg.Add(info); result = u.SuccessMsg(listMsg, "", ""); } else { info.Code = strCode; info.Msg = strMsg; listMsg.Add(info); result = u.FailMsg(listMsg); }
2、支付结果通知API
////// 支付结果通知API /// /// [HttpPost] public string OrderNotify() { string strResult = string.Empty; try { //1.获取微信通知的参数 string strXML = Utility.GetPostStr(); //判断是否请求成功 if (PayHelper.GetXmlValue(strXML, "return_code") == "SUCCESS") { //判断是否支付成功 if (PayHelper.GetXmlValue(strXML, "result_code") == "SUCCESS") { //获得签名 string getSign = PayHelper.GetXmlValue(strXML, "sign"); //进行签名 string sign = PayHelper.GetSignInfo(PayHelper.GetFromXml(strXML), PayInfo.key); if (sign == getSign) { //校验订单信息 string wxOrderNum = PayHelper.GetXmlValue(strXML, "transaction_id"); //微信订单号 string orderNum = PayHelper.GetXmlValue(strXML, "out_trade_no"); //商户订单号 string orderTotal = PayHelper.GetXmlValue(strXML, "total_fee"); string openid = PayHelper.GetXmlValue(strXML, "openid"); //校验订单是否存在 if (true) { //2.更新订单的相关状态 //3.返回一个xml格式的结果给微信服务器 if (obj > 0) { strResult = PayHelper.GetReturnXml("SUCCESS", "OK"); } else { strResult = PayHelper.GetReturnXml("FAIL", "订单状态更新失败"); } } else { strResult = PayHelper.GetReturnXml("FAIL", "支付结果中微信订单号数据库不存在!"); } } else { strResult = PayHelper.GetReturnXml("FAIL", "签名不一致!"); } } else { strResult = PayHelper.GetReturnXml("FAIL", "支付通知失败!"); } } else { strResult = PayHelper.GetReturnXml("FAIL", "支付通知失败!"); } #endregion } catch (Exception ex) { } return strResult; }
3、Utility类
////// 获得Post过来的数据 /// /// public static string GetPostStr() { Int32 intLen = Convert.ToInt32(HttpContext.Current.Request.InputStream.Length); byte[] b = new byte[intLen]; HttpContext.Current.Request.InputStream.Read(b, 0, intLen); return Encoding.UTF8.GetString(b); } /// /// 模拟POST提交 /// /// 请求地址 /// xml参数 /// 返回结果 public static string PostHttpResponse(string url, string xmlParam) { HttpWebRequest myHttpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url); myHttpWebRequest.Method = "POST"; myHttpWebRequest.ContentType = "application/x-www-form-urlencoded;charset=utf-8"; // Encode the data byte[] encodedBytes = Encoding.UTF8.GetBytes(xmlParam); myHttpWebRequest.ContentLength = encodedBytes.Length; // Write encoded data into request stream Stream requestStream = myHttpWebRequest.GetRequestStream(); requestStream.Write(encodedBytes, 0, encodedBytes.Length); requestStream.Close(); HttpWebResponse result; try { result = (HttpWebResponse)myHttpWebRequest.GetResponse(); } catch { return string.Empty; } if (result.StatusCode == HttpStatusCode.OK) { using (Stream mystream = result.GetResponseStream()) { using (StreamReader reader = new StreamReader(mystream)) { return reader.ReadToEnd(); } } } return null; }
4、PayHelper类
#region 生成签名 ////// 获取签名数据 /// /// /// /// public static string GetSignInfo(Dictionary<string, string> strParam, string key) { int i = 0; string sign = string.Empty; StringBuilder sb = new StringBuilder(); try { foreach (KeyValuePair<string, string> temp in strParam) { if (temp.Value == "" || temp.Value == null || temp.Key.ToLower() == "sign") { continue; } i++; sb.Append(temp.Key.Trim() + "=" + temp.Value.Trim() + "&"); } sb.Append("key=" + key.Trim() + ""); sign = MD5Core.GetHashString(sb.ToString(), Encoding.UTF8).ToUpper(); } catch (Exception ex) { Utility.AddLog("PayHelper", "GetSignInfo", ex.Message, ex); } return sign; } #endregion #region XML 处理 /// /// 获取XML值 /// /// XML字符串 /// 字段值 /// public static string GetXmlValue(string strXml, string strData) { string xmlValue = string.Empty; XmlDocument xmlDocument = new XmlDocument(); xmlDocument.LoadXml(strXml); var selectSingleNode = xmlDocument.DocumentElement.SelectSingleNode(strData); if (selectSingleNode != null) { xmlValue = selectSingleNode.InnerText; } return xmlValue; } /// /// 集合转换XML数据 (拼接成XML请求数据) /// /// 参数 /// public static string CreateXmlParam(Dictionary<string, string> strParam) { StringBuilder sb = new StringBuilder(); try { sb.Append(" "); foreach (KeyValuePair<string, string> k in strParam) { if (k.Key == "attach" || k.Key == "body" || k.Key == "sign") { sb.Append("<" + k.Key + ">" + k.Value + "]]>" + k.Key + ">"); } else { sb.Append("<" + k.Key + ">" + k.Value + "" + k.Key + ">"); } } sb.Append(""); } catch (Exception ex) { Utility.AddLog("PayHelper", "CreateXmlParam", ex.Message, ex); } return sb.ToString(); } /// /// XML数据转换集合(XML数据拼接成字符串) /// /// /// public static Dictionary<string, string> GetFromXml(string xmlString) { Dictionary<string, string> sParams = new Dictionary<string, string>(); try { XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlString); XmlElement root = doc.DocumentElement; int len = root.ChildNodes.Count; for (int i = 0; i < len; i++) { string name = root.ChildNodes[i].Name; if (!sParams.ContainsKey(name)) { sParams.Add(name.Trim(), root.ChildNodes[i].InnerText.Trim()); } } } catch (Exception ex) { Utility.AddLog("PayHelper", "GetFromXml", ex.Message, ex); } return sParams; } /// /// 返回通知 XML /// /// /// /// public static string GetReturnXml(string returnCode, string returnMsg) { StringBuilder sb = new StringBuilder(); sb.Append(" "); sb.Append(" " + returnCode + "]]> "); sb.Append("" + returnMsg + "]]> "); sb.Append(""); return sb.ToString(); } #endregion
5、PayInfo类
public class PayInfo { ////// 小程序登录API /// public static string loginUrl = ConfigurationManager.AppSettings["loginurl"].ToString(); /// /// 统一下单API /// public static string orderUrl = ConfigurationManager.AppSettings["orderurl"].ToString(); /// /// 支付结果通知API /// public static string notifyUrl = ConfigurationManager.AppSettings["notifyurl"].ToString(); /// /// 查询订单API /// public static string queryUrl = ConfigurationManager.AppSettings["queryurl"].ToString(); /// /// 申请退款API /// public static string refundUrl = ConfigurationManager.AppSettings["refundurl"].ToString(); /// /// 退款通知API /// public static string refundNotifyUrl = ConfigurationManager.AppSettings["refundnotifyurl"].ToString(); /// /// 退款通知API /// public static string refundQueryUrl = ConfigurationManager.AppSettings["refundqueryurl"].ToString(); /// /// 小程序唯一标识 /// public static string appid = ConfigurationManager.AppSettings["appid"].ToString(); /// /// 小程序的 app secret /// public static string secret = ConfigurationManager.AppSettings["secret"].ToString(); /// /// 小程序的授权类型 /// public static string grantType = ConfigurationManager.AppSettings["grant_type"].ToString(); /// /// 商户号(微信支付分配的商户号) /// public static string mchid = ConfigurationManager.AppSettings["mch_id"].ToString(); /// ///商户平台设置的密钥key /// public static string key = ConfigurationManager.AppSettings["key"].ToString(); /// /// 随机字符串不长于 32 位 /// public static string nonceStr = PayHelper.GetNonceStr(); /// /// 时间戳 从1970年1月1日00:00:00至今的秒数,即当前的时间 /// public static string timeStamp = PayHelper.GetTimeStamp(); /// /// 终端IP APP和网页支付提交用户端IP, /// public static string addrIp = PayHelper.GetIP; /// /// 交易类型 小程序取值如下:JSAPI /// public static string tradeType = "JSAPI"; /// /// 签名类型 默认为MD5,支持HMAC-SHA256和MD5。 /// public static string signType = "MD5"; /// /// 商品描述 商品简单描述,该字段请按照规范传递 /// public static string body = "奇小爱的异想世界-支付"; /// /// 附加数据 在查询API和支付通知中原样返回 /// public static string attach = "微信支付信息"; /// /// 签名,参与签名参数:appid,mch_id,transaction_id,out_trade_no,nonce_str,key /// public string sign = ""; /// /// 微信订单号,优先使用 /// public static string transactionid = ""; /// /// 商户系统内部订单号 /// public static string out_trade_no = ""; /// /// 商户退款单号 /// public static string out_refund_no = ""; /// /// 退款金额 /// public static decimal refundfee; /// /// 订单金额 /// public static decimal totalfee; }
三、微信小程序调用
1、小程序调用方法,发起支付,具体如下:
微信小程序支付方发起微信支付。
2、示例代码:
wx.requestPayment({ 'timeStamp': '', 'nonceStr': '', 'package': '', 'signType': 'MD5', 'paySign': '', 'success':function(res){ }, 'fail':function(res){ } })
3、测试完成支付
优秀是一种习惯,欢迎大家关注学习