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

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

支付流程:


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

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

  ③第三方返回下单参数。

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

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

  ⑥第三方返回支付结果。

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

微信小程序支付:


先放一张官方的图

具体实现:

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

 using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web; namespace App.Pay
{
public class Log
{
//在网站根目录下创建日志目录
public string path; public Log(string path)
{
this.path = HttpContext.Current.Request.PhysicalApplicationPath + path;
}
/**
* 向日志文件写入调试信息
* @param className 类名
* @param content 写入内容
*/
public void Debug(string className, string content)
{
WriteLog("DEBUG", className, content);
} /**
* 向日志文件写入运行时信息
* @param className 类名
* @param content 写入内容
*/
public void Info(string className, string content)
{
WriteLog("INFO", className, content);
} /**
* 向日志文件写入出错信息
* @param className 类名
* @param content 写入内容
*/
public void Error(string className, string content)
{
WriteLog("ERROR", className, content);
} /**
* 实际的写日志操作
* @param type 日志记录类型
* @param className 类名
* @param content 写入内容
*/
protected void WriteLog(string type, string className, string content)
{
if (!Directory.Exists(path))//如果日志目录不存在就创建
{
Directory.CreateDirectory(path);
} string time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");//获取当前系统时间
string filename = path + "/" + DateTime.Now.ToString("yyyy-MM-dd") + ".log";//用日期对日志文件命名 //创建或打开日志文件,向日志文件末尾追加记录
StreamWriter mySw = File.AppendText(filename); //向日志文件写入内容
string write_content = time + " " + type + " " + className + ": " + content;
mySw.WriteLine(write_content); //关闭日志文件
mySw.Close();
}
}
}

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

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace App.Pay.WePay
{
/**
* 配置账号信息
*/
public class WePayConfig
{
//=======【商户系统后台机器IP】=====================================
/* 此参数可手动配置也可在程序中自动获取
*/
public const string IP = "8.8.8.8"; //=======【代理服务器设置】===================================
/* 默认IP和端口号分别为0.0.0.0和0,此时不开启代理(如有需要才设置)
*/
public const string PROXY_URL = ""; //=======【上报信息配置】===================================
/* 测速上报等级,0.关闭上报; 1.仅错误时上报; 2.全量上报
*/
public const int REPORT_LEVENL = ; //=======【日志级别】===================================
/* 日志等级,0.不输出日志;1.只输出错误信息; 2.输出错误和正常信息; 3.输出错误信息、正常信息和调试信息
*/
public const int LOG_LEVENL = ;
}
}

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

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace App.Pay.WePay
{
public class WePayException : Exception
{
public WePayException(string msg) : base(msg)
{ }
}
}

新建SafeXMLDocument类

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml; namespace App.Pay.WePay
{
public class SafeXmlDocument : XmlDocument
{
public SafeXmlDocument()
{
this.XmlResolver = null;
}
}
}

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

 using App.Common.Extension;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks; namespace App.Pay.WePay
{
public class WeHelper
{
// 小程序
private static string _appid = ConfigurationManager.AppSettings["wxAPPID"];
// 小程序
private static string _appSecret = ConfigurationManager.AppSettings["wxAppSecret"]; public static WxSession Code2Session(string code)
{
var url = $"https://api.weixin.qq.com/sns/jscode2session?appid={_appid}&secret={_appSecret}&js_code={code}&grant_type=authorization_code";
try
{
var request = WebRequest.Create(url);
using (var response = request.GetResponse())
{
using (var rs = response.GetResponseStream())
{
using (var s = new System.IO.StreamReader(rs))
{
return s.ReadToEnd().JsonTo<WxSession>();
}
}
}
}
catch (Exception)
{
return null;
}
}
} public class WxSession
{
public string openid { get; set; }
public string session_key { get; set; }
public string errcode { get; set; }
public string errMsg { get; set; }
public string unionid { get; set; }
} }

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

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

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Configuration; namespace App.Pay.WePay.XcxPay
{
public class XcxPayConfig : WePayConfig
{
//=======【基本信息设置】=====================================
/* 微信公众号信息配置
* APPID:绑定支付的APPID(必须配置)
* MCHID:商户号(必须配置)
* KEY:商户支付密钥,参考开户邮件设置(必须配置)
* APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置)
*/
/// 小程序支付
public static string APPID = WebConfigurationManager.AppSettings["XcxAppID"].ToString();
public static string MCHID = WebConfigurationManager.AppSettings["XcxMchID"].ToString();
public static string KEY = WebConfigurationManager.AppSettings["XcxKey"].ToString();
public static string APPSECRET = WebConfigurationManager.AppSettings["XcxAppSecret"].ToString(); //=======【证书路径设置】=====================================
/* 证书路径,注意应该填写绝对路径(仅退款、撤销订单时需要)
*/
public const string SSLCERT_PATH = "cert/apiclient_cert.p12";
public const string SSLCERT_PASSWORD = ""; //=======【支付结果通知url】=====================================
/* 支付结果通知回调url,用于商户接收支付结果
*/
public static string NOTIFY_URL = WebConfigurationManager.AppSettings["XcxNotifyUrl"].ToString(); // log记录
public static string LogPath = WebConfigurationManager.AppSettings["XcxLog"].ToString();
}
}
<!--小程序支付-->
<add key="XcxAppID" value="" />
<add key="XcxAppSecret" value="" />
<add key="XcxMchID" value="" />
<add key="XcxKey" value="" />
<!--回调通知-->
<add key="XcxNotifyUrl" value="" />

新建WeXcxPayApi类

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace App.Pay.WePay.XcxPay
{
public class XcxPayApi
{
public static Log Log = new Log(XcxPayConfig.LogPath); /**
* 提交被扫支付API
* 收银员使用扫码设备读取微信用户刷卡授权码以后,二维码或条码信息传送至商户收银台,
* 由商户收银台或者商户后台调用该接口发起支付。
* @param WxPayData inputObj 提交给被扫支付API的参数
* @param int timeOut 超时时间
* @throws WePayException
* @return 成功时返回调用结果,其他抛异常
*/
public static XcxPayData Micropay(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/micropay";
//检测必填参数
if (!inputObj.IsSet("body"))
{
throw new WePayException("提交被扫支付API接口中,缺少必填参数body!");
}
else if (!inputObj.IsSet("out_trade_no"))
{
throw new WePayException("提交被扫支付API接口中,缺少必填参数out_trade_no!");
}
else if (!inputObj.IsSet("total_fee"))
{
throw new WePayException("提交被扫支付API接口中,缺少必填参数total_fee!");
}
else if (!inputObj.IsSet("auth_code"))
{
throw new WePayException("提交被扫支付API接口中,缺少必填参数auth_code!");
} inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", ""));//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名
string xml = inputObj.ToXml(); var start = DateTime.Now;//请求开始时间 Log.Info("XcxPayApi", "MicroPay request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
Log.Info("XcxPayApi", "MicroPay response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时 //将xml格式的结果转换为对象以返回
XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 查询订单
* @param WxPayData inputObj 提交给查询订单API的参数
* @param int timeOut 超时时间
* @throws WePayException
* @return 成功时返回订单查询结果,其他抛异常
*/
public static XcxPayData OrderQuery(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/orderquery";
//检测必填参数
if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
{
throw new WePayException("订单查询接口中,out_trade_no、transaction_id至少填一个!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", XcxPayApi.GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名 string xml = inputObj.ToXml(); var start = DateTime.Now; Log.Info("XcxPayApi", "OrderQuery request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口提交数据
Log.Info("XcxPayApi", "OrderQuery response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时 //将xml格式的数据转化为对象以返回
XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 撤销订单API接口
* @param WxPayData inputObj 提交给撤销订单API接口的参数,out_trade_no和transaction_id必填一个
* @param int timeOut 接口超时时间
* @throws WePayException
* @return 成功时返回API调用结果,其他抛异常
*/
public static XcxPayData Reverse(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/secapi/pay/reverse";
//检测必填参数
if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
{
throw new WePayException("撤销订单API接口中,参数out_trade_no和transaction_id必须填写一个!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名
string xml = inputObj.ToXml(); var start = DateTime.Now;//请求开始时间 Log.Info("XcxPayApi", "Reverse request : " + xml); string response = XcxPayHttpService.Post(xml, url, true, timeOut); Log.Info("XcxPayApi", "Reverse response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds); XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 申请退款
* @param WxPayData inputObj 提交给申请退款API的参数
* @param int timeOut 超时时间
* @throws WePayException
* @return 成功时返回接口调用结果,其他抛异常
*/
public static XcxPayData Refund(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/secapi/pay/refund";
//检测必填参数
if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
{
throw new WePayException("退款申请接口中,out_trade_no、transaction_id至少填一个!");
}
else if (!inputObj.IsSet("out_refund_no"))
{
throw new WePayException("退款申请接口中,缺少必填参数out_refund_no!");
}
else if (!inputObj.IsSet("total_fee"))
{
throw new WePayException("退款申请接口中,缺少必填参数total_fee!");
}
else if (!inputObj.IsSet("refund_fee"))
{
throw new WePayException("退款申请接口中,缺少必填参数refund_fee!");
}
else if (!inputObj.IsSet("op_user_id"))
{
throw new WePayException("退款申请接口中,缺少必填参数op_user_id!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", ""));//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名 string xml = inputObj.ToXml();
var start = DateTime.Now; Log.Info("XcxPayApi", "Refund request : " + xml);
string response = XcxPayHttpService.Post(xml, url, true, timeOut);//调用HTTP通信接口提交数据到API
Log.Info("XcxPayApi", "Refund response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时 //将xml格式的结果转换为对象以返回
XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 查询退款
* 提交退款申请后,通过该接口查询退款状态。退款有一定延时,
* 用零钱支付的退款20分钟内到账,银行卡支付的退款3个工作日后重新查询退款状态。
* out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个
* @param WxPayData inputObj 提交给查询退款API的参数
* @param int timeOut 接口超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData RefundQuery(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/refundquery";
//检测必填参数
if (!inputObj.IsSet("out_refund_no") && !inputObj.IsSet("out_trade_no") &&
!inputObj.IsSet("transaction_id") && !inputObj.IsSet("refund_id"))
{
throw new WePayException("退款查询接口中,out_refund_no、out_trade_no、transaction_id、refund_id四个参数必填一个!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名 string xml = inputObj.ToXml(); var start = DateTime.Now;//请求开始时间 Log.Info("XcxPayApi", "RefundQuery request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
Log.Info("XcxPayApi", "RefundQuery response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds);//获得接口耗时 //将xml格式的结果转换为对象以返回
XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
* 下载对账单
* @param WxPayData inputObj 提交给下载对账单API的参数
* @param int timeOut 接口超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData DownloadBill(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/downloadbill";
//检测必填参数
if (!inputObj.IsSet("bill_date"))
{
throw new WePayException("对账单接口中,缺少必填参数bill_date!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名 string xml = inputObj.ToXml(); Log.Info("XcxPayApi", "DownloadBill request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);//调用HTTP通信接口以提交数据到API
Log.Info("XcxPayApi", "DownloadBill result : " + response); XcxPayData result = new XcxPayData();
//若接口调用失败会返回xml格式的结果
if (response.Substring(, ) == "<xml>")
{
result.FromXml(response);
}
//接口调用成功则返回非xml格式的数据
else
result.SetValue("result", response); return result;
} /**
*
* 转换短链接
* 该接口主要用于扫码原生支付模式一中的二维码链接转成短链接(weixin://wxpay/s/XXXXXX),
* 减小二维码数据量,提升扫描速度和精确度。
* @param WxPayData inputObj 提交给转换短连接API的参数
* @param int timeOut 接口超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData ShortUrl(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/tools/shorturl";
//检测必填参数
if (!inputObj.IsSet("long_url"))
{
throw new WePayException("需要转换的URL,签名用原串,传输需URL encode!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名
inputObj.SetValue("device_info", "wxAPP");//设备名称
string xml = inputObj.ToXml(); var start = DateTime.Now;//请求开始时间 Log.Info("XcxPayApi", "ShortUrl request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);
Log.Info("XcxPayApi", "ShortUrl response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds); XcxPayData result = new XcxPayData();
result.FromXml(response);
ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 统一下单
* @param WxPaydata inputObj 提交给统一下单API的参数
* @param int timeOut 超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData UnifiedOrder(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
//检测必填参数
if (!inputObj.IsSet("out_trade_no"))
{
throw new WePayException("缺少统一支付接口必填参数out_trade_no!");
}
else if (!inputObj.IsSet("body"))
{
throw new WePayException("缺少统一支付接口必填参数body!");
}
else if (!inputObj.IsSet("total_fee"))
{
throw new WePayException("缺少统一支付接口必填参数total_fee!");
}
else if (!inputObj.IsSet("trade_type"))
{
throw new WePayException("缺少统一支付接口必填参数trade_type!");
} //关联参数
if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
{
throw new WePayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
}
if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
{
throw new WePayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
} //异步通知url未设置,则使用配置文件中的url
if (!inputObj.IsSet("notify_url"))
{
inputObj.SetValue("notify_url", XcxPayConfig.NOTIFY_URL);//异步通知url
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串 //签名
inputObj.SetValue("sign", inputObj.MakeSign());
string xml = inputObj.ToXml(); var start = DateTime.Now; Log.Info("XcxPayApi", "UnfiedOrder request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);
Log.Info("XcxPayApi", "UnfiedOrder response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds); XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 统一下单
* @param WxPaydata inputObj 提交给统一下单API的参数
* @param int timeOut 超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData UnifiedOrderApp(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
//检测必填参数
if (!inputObj.IsSet("out_trade_no"))
{
throw new WePayException("缺少统一支付接口必填参数out_trade_no!");
}
else if (!inputObj.IsSet("body"))
{
throw new WePayException("缺少统一支付接口必填参数body!");
}
else if (!inputObj.IsSet("total_fee"))
{
throw new WePayException("缺少统一支付接口必填参数total_fee!");
}
else if (!inputObj.IsSet("trade_type"))
{
throw new WePayException("缺少统一支付接口必填参数trade_type!");
} //关联参数
if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
{
throw new WePayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
}
if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
{
throw new WePayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
} //异步通知url未设置,则使用配置文件中的url
if (!inputObj.IsSet("notify_url"))
{
inputObj.SetValue("notify_url", XcxPayConfig.NOTIFY_URL);//异步通知url
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("spbill_create_ip", WePayConfig.IP);//终端ip
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串 //签名
inputObj.SetValue("sign", inputObj.MakeSign());
string xml = inputObj.ToXml(); var start = DateTime.Now; Log.Info("XcxPayApi", "UnfiedOrder request : " + xml);
string response = XcxPayHttpService.Post(xml, url, false, timeOut);
Log.Info("XcxPayApi", "UnfiedOrder response : " + response); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds); XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 关闭订单
* @param WxPayData inputObj 提交给关闭订单API的参数
* @param int timeOut 接口超时时间
* @throws WePayException
* @return 成功时返回,其他抛异常
*/
public static XcxPayData CloseOrder(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/pay/closeorder";
//检测必填参数
if (!inputObj.IsSet("out_trade_no"))
{
throw new WePayException("关闭订单接口中,out_trade_no必填!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名
string xml = inputObj.ToXml(); var start = DateTime.Now;//请求开始时间 string response = XcxPayHttpService.Post(xml, url, false, timeOut); var end = DateTime.Now;
int timeCost = (int)((end - start).TotalMilliseconds); XcxPayData result = new XcxPayData();
result.FromXml(response); ReportCostTime(url, timeCost, result);//测速上报 return result;
} /**
*
* 测速上报
* @param string interface_url 接口URL
* @param int timeCost 接口耗时
* @param WxPayData inputObj参数数组
*/
private static void ReportCostTime(string interface_url, int timeCost, XcxPayData inputObj)
{
//如果不需要进行上报
if (WePayConfig.REPORT_LEVENL == )
{
return;
} //如果仅失败上报
if (WePayConfig.REPORT_LEVENL == && inputObj.IsSet("return_code") && inputObj.GetValue("return_code").ToString() == "SUCCESS" &&
inputObj.IsSet("result_code") && inputObj.GetValue("result_code").ToString() == "SUCCESS")
{
return;
} //上报逻辑
XcxPayData data = new XcxPayData();
data.SetValue("interface_url", interface_url);
data.SetValue("execute_time_", timeCost);
//返回状态码
if (inputObj.IsSet("return_code"))
{
data.SetValue("return_code", inputObj.GetValue("return_code"));
}
//返回信息
if (inputObj.IsSet("return_msg"))
{
data.SetValue("return_msg", inputObj.GetValue("return_msg"));
}
//业务结果
if (inputObj.IsSet("result_code"))
{
data.SetValue("result_code", inputObj.GetValue("result_code"));
}
//错误代码
if (inputObj.IsSet("err_code"))
{
data.SetValue("err_code", inputObj.GetValue("err_code"));
}
//错误代码描述
if (inputObj.IsSet("err_code_des"))
{
data.SetValue("err_code_des", inputObj.GetValue("err_code_des"));
}
//商户订单号
if (inputObj.IsSet("out_trade_no"))
{
data.SetValue("out_trade_no", inputObj.GetValue("out_trade_no"));
}
//设备号
if (inputObj.IsSet("device_info"))
{
data.SetValue("device_info", inputObj.GetValue("device_info"));
} try
{
Report(data);
}
catch (WePayException ex)
{
//不做任何处理
}
} /**
*
* 测速上报接口实现
* @param WxPayData inputObj 提交给测速上报接口的参数
* @param int timeOut 测速上报接口超时时间
* @throws WePayException
* @return 成功时返回测速上报接口返回的结果,其他抛异常
*/
public static XcxPayData Report(XcxPayData inputObj, int timeOut = )
{
string url = "https://api.mch.weixin.qq.com/payitil/report";
//检测必填参数
if (!inputObj.IsSet("interface_url"))
{
throw new WePayException("接口URL,缺少必填参数interface_url!");
}
if (!inputObj.IsSet("return_code"))
{
throw new WePayException("返回状态码,缺少必填参数return_code!");
}
if (!inputObj.IsSet("result_code"))
{
throw new WePayException("业务结果,缺少必填参数result_code!");
}
if (!inputObj.IsSet("user_ip"))
{
throw new WePayException("访问接口IP,缺少必填参数user_ip!");
}
if (!inputObj.IsSet("execute_time_"))
{
throw new WePayException("接口耗时,缺少必填参数execute_time_!");
} inputObj.SetValue("appid", XcxPayConfig.APPID);//公众账号ID
inputObj.SetValue("mch_id", XcxPayConfig.MCHID);//商户号
inputObj.SetValue("user_ip", WePayConfig.IP);//终端ip
inputObj.SetValue("time", DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
inputObj.SetValue("sign", inputObj.MakeSign());//签名
string xml = inputObj.ToXml(); Log.Info("XcxPayApi", "Report request : " + xml); string response = XcxPayHttpService.Post(xml, url, false, timeOut); Log.Info("XcxPayApi", "Report response : " + response); XcxPayData result = new XcxPayData();
result.FromXml(response);
return result;
} /**
* 根据当前系统时间加随机序列来生成订单号
* @return 订单号
*/
public static string GenerateOutTradeNo()
{
var ran = new Random();
return string.Format("{0}{1}{2}", XcxPayConfig.MCHID, DateTime.Now.ToString("yyyyMMddHHmmss"), ran.Next());
} /**
* 生成时间戳,标准北京时间,时区为东八区,自1970年1月1日 0点0分0秒以来的秒数
* @return 时间戳
*/
public static string GenerateTimeStamp()
{
TimeSpan ts = DateTime.UtcNow - new DateTime(, , , , , , );
return Convert.ToInt64(ts.TotalSeconds).ToString();
} /**
* 生成随机串,随机串包含字母或数字
* @return 随机串
*/
public static string GenerateNonceStr()
{
return Guid.NewGuid().ToString().Replace("-", "");
}
}
}

新建XcxPayData类

 using LitJson;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Xml; namespace App.Pay.WePay.XcxPay
{
/// <summary>
/// 微信支付协议接口数据类,所有的API接口通信都依赖这个数据结构,
/// 在调用接口之前先填充各个字段的值,然后进行接口通信,
/// 这样设计的好处是可扩展性强,用户可随意对协议进行更改而不用重新设计数据结构,
/// 还可以随意组合出不同的协议数据包,不用为每个协议设计一个数据包结构
/// </summary>
public class XcxPayData
{
private Log Log = new Log(XcxPayConfig.LogPath); public XcxPayData()
{
} //采用排序的Dictionary的好处是方便对数据包进行签名,不用再签名之前再做一次排序
private SortedDictionary<string, object> m_values = new SortedDictionary<string, object>(); /**
* 设置某个字段的值
* @param key 字段名
* @param value 字段值
*/
public void SetValue(string key, object value)
{
m_values[key] = value;
} /**
* 根据字段名获取某个字段的值
* @param key 字段名
* @return key对应的字段值
*/
public object GetValue(string key)
{
object o = null;
m_values.TryGetValue(key, out o);
return o;
} /**
* 判断某个字段是否已设置
* @param key 字段名
* @return 若字段key已被设置,则返回true,否则返回false
*/
public bool IsSet(string key)
{
object o = null;
m_values.TryGetValue(key, out o);
if (null != o)
return true;
else
return false;
} /**
* @将Dictionary转成xml
* @return 经转换得到的xml串
* @throws WePayException
**/
public string ToXml()
{
//数据为空时不能转化为xml格式
if ( == m_values.Count)
{
Log.Error(this.GetType().ToString(), "WxPayData数据为空!");
throw new WePayException("WxPayData数据为空!");
} string xml = "<xml>";
foreach (KeyValuePair<string, object> pair in m_values)
{
//字段值不能为null,会影响后续流程
if (pair.Value == null)
{
Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
throw new WePayException("WxPayData内部含有值为null的字段!");
} if (pair.Value.GetType() == typeof(int))
{
xml += "<" + pair.Key + ">" + pair.Value + "</" + pair.Key + ">";
}
else if (pair.Value.GetType() == typeof(string))
{
xml += "<" + pair.Key + ">" + "<![CDATA[" + pair.Value + "]]></" + pair.Key + ">";
}
else//除了string和int类型不能含有其他数据类型
{
Log.Error(this.GetType().ToString(), "WxPayData字段数据类型错误!");
throw new WePayException("WxPayData字段数据类型错误!");
}
}
xml += "</xml>";
return xml;
} /**
* @将xml转为WxPayData对象并返回对象内部的数据
* @param string 待转换的xml串
* @return 经转换得到的Dictionary
* @throws WePayException
*/
public SortedDictionary<string, object> FromXml(string xml)
{
if (string.IsNullOrEmpty(xml))
{
Log.Error(this.GetType().ToString(), "将空的xml串转换为WxPayData不合法!");
throw new WePayException("将空的xml串转换为WxPayData不合法!");
} SafeXmlDocument xmlDoc = new SafeXmlDocument();
xmlDoc.LoadXml(xml);
XmlNode xmlNode = xmlDoc.FirstChild;//获取到根节点<xml>
XmlNodeList nodes = xmlNode.ChildNodes;
foreach (XmlNode xn in nodes)
{
XmlElement xe = (XmlElement)xn;
m_values[xe.Name] = xe.InnerText;//获取xml的键值对到WxPayData内部的数据中
} try
{
//2015-06-29 错误是没有签名
if (m_values["return_code"] != "SUCCESS")
{
return m_values;
}
CheckSign();//验证签名,不通过会抛异常
}
catch (WePayException ex)
{
throw new WePayException(ex.Message);
} return m_values;
} /**
* @Dictionary格式转化成url参数格式
* @ return url格式串, 该串不包含sign字段值
*/
public string ToUrl()
{
string buff = "";
foreach (KeyValuePair<string, object> pair in m_values)
{
if (pair.Value == null)
{
Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
throw new WePayException("WxPayData内部含有值为null的字段!");
} if (pair.Key != "sign" && pair.Value.ToString() != "")
{
buff += pair.Key + "=" + pair.Value + "&";
}
}
buff = buff.Trim('&');
return buff;
} /**
* @Dictionary格式化成Json
* @return json串数据
*/
public string ToJson()
{
string jsonStr = JsonMapper.ToJson(m_values);
return jsonStr;
} /**
* @values格式化成能在Web页面上显示的结果(因为web页面上不能直接输出xml格式的字符串)
*/
public string ToPrintStr()
{
string str = "";
foreach (KeyValuePair<string, object> pair in m_values)
{
if (pair.Value == null)
{
Log.Error(this.GetType().ToString(), "WxPayData内部含有值为null的字段!");
throw new WePayException("WxPayData内部含有值为null的字段!");
} str += string.Format("{0}={1}<br>", pair.Key, pair.Value.ToString());
}
Log.Info(this.GetType().ToString(), "Print in Web Page : " + str);
return str;
} /**
* @生成签名,详见签名生成算法
* @return 签名, sign字段不参加签名
*/
public string MakeSign()
{
//转url格式
string str = ToUrl();
//在string后加入API KEY
str += "&key=" + XcxPayConfig.KEY;
//MD5加密
var md5 = MD5.Create();
var bs = md5.ComputeHash(Encoding.UTF8.GetBytes(str));
var sb = new StringBuilder();
foreach (byte b in bs)
{
sb.Append(b.ToString("x2"));
}
//所有字符转为大写
return sb.ToString().ToUpper();
} /**
*
* 检测签名是否正确
* 正确返回true,错误抛异常
*/
public bool CheckSign()
{
//如果没有设置签名,则跳过检测
if (!IsSet("sign"))
{
Log.Error(this.GetType().ToString(), "WxPayData签名存在但不合法!");
throw new WePayException("WxPayData签名存在但不合法!");
}
//如果设置了签名但是签名为空,则抛异常
else if (GetValue("sign") == null || GetValue("sign").ToString() == "")
{
Log.Error(this.GetType().ToString(), "WxPayData签名存在但不合法!");
throw new WePayException("WxPayData签名存在但不合法!");
} //获取接收到的签名
string return_sign = GetValue("sign").ToString(); //在本地计算新的签名
string cal_sign = MakeSign(); if (cal_sign == return_sign)
{
return true;
} Log.Error(this.GetType().ToString(), "WxPayData签名验证错误!");
throw new WePayException("WxPayData签名验证错误!");
} /**
* @获取Dictionary
*/
public SortedDictionary<string, object> GetValues()
{
return m_values;
}
}
}

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

 using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using System.Web; namespace App.Pay.WePay.XcxPay
{
public class XcxPayHttpService
{
private static Log Log = new Log(XcxPayConfig.LogPath); public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
//直接确认,否则打不开
return true;
} public static string Post(string xml, string url, bool isUseCert, int timeout)
{
System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接 string result = "";//返回结果 HttpWebRequest request = null;
HttpWebResponse response = null;
Stream reqStream = null; try
{
//设置最大连接数
ServicePointManager.DefaultConnectionLimit = ;
//设置https验证方式
if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
{
ServicePointManager.ServerCertificateValidationCallback =
new RemoteCertificateValidationCallback(CheckValidationResult);
} /***************************************************************
* 下面设置HttpWebRequest的相关属性
* ************************************************************/
request = (HttpWebRequest)WebRequest.Create(url); request.Method = "POST";
request.Timeout = timeout * ; //设置代理服务器
//WebProxy proxy = new WebProxy(); //定义一个网关对象
//proxy.Address = new Uri(WxPayConfig.PROXY_URL); //网关服务器端口:端口
//request.Proxy = proxy; //设置POST的数据类型和长度
request.ContentType = "text/xml";
byte[] data = System.Text.Encoding.UTF8.GetBytes(xml);
request.ContentLength = data.Length; //是否使用证书
if (isUseCert)
{
string path = HttpContext.Current.Request.PhysicalApplicationPath;
X509Certificate2 cert = new X509Certificate2(path + XcxPayConfig.SSLCERT_PATH, XcxPayConfig.SSLCERT_PASSWORD);
request.ClientCertificates.Add(cert);
Log.Info("XcxPayHttpService", "PostXml used cert");
} //往服务器写入数据
reqStream = request.GetRequestStream();
reqStream.Write(data, , data.Length);
reqStream.Close(); //获取服务端返回
response = (HttpWebResponse)request.GetResponse(); //获取服务端返回数据
StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
result = sr.ReadToEnd().Trim();
sr.Close();
}
catch (System.Threading.ThreadAbortException e)
{
Log.Error("XcxPayHttpService", "Thread - caught ThreadAbortException - resetting.");
Log.Error("Exception message: {0}", e.Message);
System.Threading.Thread.ResetAbort();
}
catch (WebException e)
{
Log.Error("XcxPayHttpService", e.ToString());
if (e.Status == WebExceptionStatus.ProtocolError)
{
Log.Error("XcxPayHttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
Log.Error("XcxPayHttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
}
throw new WePayException(e.ToString());
}
catch (Exception e)
{
Log.Error("XcxPayHttpService", e.ToString());
throw new WePayException(e.ToString());
}
finally
{
//关闭连接和流
if (response != null)
{
response.Close();
}
if (request != null)
{
request.Abort();
}
}
return result;
} /// <summary>
/// 处理http GET请求,返回数据
/// </summary>
/// <param name="url">请求的url地址</param>
/// <returns>http GET成功后返回的数据,失败抛WebException异常</returns>
public static string Get(string url)
{
System.GC.Collect();
string result = ""; HttpWebRequest request = null;
HttpWebResponse response = null; //请求url以获取数据
try
{
//设置最大连接数
ServicePointManager.DefaultConnectionLimit = ;
//设置https验证方式
if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
{
ServicePointManager.ServerCertificateValidationCallback =
new RemoteCertificateValidationCallback(CheckValidationResult);
} /***************************************************************
* 下面设置HttpWebRequest的相关属性
* ************************************************************/
request = (HttpWebRequest)WebRequest.Create(url); request.Method = "GET"; //设置代理
//WebProxy proxy = new WebProxy();
//proxy.Address = new Uri(WxPayConfig.PROXY_URL);
//request.Proxy = proxy; //获取服务器返回
response = (HttpWebResponse)request.GetResponse(); //获取HTTP返回数据
StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
result = sr.ReadToEnd().Trim();
sr.Close();
}
catch (System.Threading.ThreadAbortException e)
{
Log.Error("XcxPayHttpService", "Thread - caught ThreadAbortException - resetting.");
Log.Error("Exception message: {0}", e.Message);
System.Threading.Thread.ResetAbort();
}
catch (WebException e)
{
Log.Error("XcxPayHttpService", e.ToString());
if (e.Status == WebExceptionStatus.ProtocolError)
{
Log.Error("XcxPayHttpService", "StatusCode : " + ((HttpWebResponse)e.Response).StatusCode);
Log.Error("XcxPayHttpService", "StatusDescription : " + ((HttpWebResponse)e.Response).StatusDescription);
}
throw new WePayException(e.ToString());
}
catch (Exception e)
{
Log.Error("XcxPayHttpService", e.ToString());
throw new WePayException(e.ToString());
}
finally
{
//关闭连接和流
if (response != null)
{
response.Close();
}
if (request != null)
{
request.Abort();
}
}
return result;
}
}
}

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

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web; namespace App.Pay.WePay.XcxPay
{
/// <summary>
/// 回调处理基类
/// 主要负责接收微信支付后台发送过来的数据,对数据进行签名验证
/// 子类在此类基础上进行派生并重写自己的回调处理过程
/// </summary>
public class XcxPayNotify
{
public HttpContext context { get; set; } public Log Log = new Log(XcxPayConfig.LogPath); public XcxPayNotify(HttpContext context)
{
this.context = context;
} /// <summary>
/// 接收从微信支付后台发送过来的数据并验证签名
/// </summary>
/// <returns>微信支付后台返回的数据</returns>
public XcxPayData GetNotifyData()
{
//接收从微信后台POST过来的数据
System.IO.Stream s = context.Request.InputStream;
int count = ;
byte[] buffer = new byte[];
StringBuilder builder = new StringBuilder();
while ((count = s.Read(buffer, , )) > )
{
builder.Append(Encoding.UTF8.GetString(buffer, , count));
}
s.Flush();
s.Close();
s.Dispose(); //转换数据格式并验证签名
XcxPayData data = new XcxPayData();
try
{
data.FromXml(builder.ToString());
}
catch (WePayException ex)
{
//若签名错误,则立即返回结果给微信支付后台
XcxPayData res = new XcxPayData();
res.SetValue("return_code", "FAIL");
res.SetValue("return_msg", ex.Message);
Log.Error(this.GetType().ToString(), "Sign check error : " + res.ToXml());
context.Response.Write(res.ToXml());
context.Response.End();
} Log.Info(this.GetType().ToString(), "Check sign success");
return data;
} //派生类需要重写这个方法,进行不同的回调处理
public virtual void ProcessNotify()
{ }
}
}

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

 using App.Pay.WePay;
using App.Pay.WePay.XcxPay;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Configuration;
using System.Web.Mvc; namespace App.WebTest.Controllers
{
/// <summary>
/// 微信小程序支付
/// </summary>
public class WeXcxPayController : BaseController
{
/// <summary>
/// 小程序下单
/// </summary>
/// <param name="oIds">订单Id</param>
/// <param name="code">临时登录凭证</param>
/// <returns></returns>
public ActionResult WeXcxPay(int[] oIds, string code)
{
#region 验证订单是否有效,并合计价格 //订单价格
decimal payPrice = ; //订单描述
string detail = ""; //验证订单..... #endregion #region 统一下单 try
{
//支付回调通知地址
var address = WebConfigurationManager.AppSettings["WxXcxNotifyUrl"].ToString();
XcxPayData data = new XcxPayData();
data.SetValue("body", "商品购买"); //可以将用户Id和订单Id同时封装在attach中
data.SetValue("attach", String.Join(",", oIds).ToString());
Random rd = new Random(); //外部商户订单号
var payNum = DateTime.Now.ToString("yyyyMMddHHmmss") + rd.Next(, ).ToString().PadLeft(, '');
data.SetValue("out_trade_no", payNum);
data.SetValue("detail", detail.Substring(, detail.Length - ));
data.SetValue("total_fee", Convert.ToInt32(payPrice * ));
data.SetValue("time_start", DateTime.Now.ToString("yyyyMMddHHmmss"));
data.SetValue("time_expire", DateTime.Now.AddMinutes().ToString("yyyyMMddHHmmss"));
data.SetValue("notify_url", address);
//data.SetValue("goods_tag", "test");
data.SetValue("trade_type", "JSAPI");
data.SetValue("openid", WeHelper.Code2Session(code).openid); XcxPayData result = XcxPayApi.UnifiedOrder(data);
var flag = true;
var msg = "";
var nonceStr = "";
var appId = "";
var package = "";
var mch_id = "";
if (!result.IsSet("appid") || !result.IsSet("prepay_id") || result.GetValue("prepay_id").ToString() == "")
{
flag = false;
msg = "下单失败";
return Json(new { Result = false, Msg = "下单失败!" });
}
else
{
//统一下单 ///TO Do......
/// 修改订单状态 nonceStr = result.GetValue("nonce_str").ToString();
appId = result.GetValue("appid").ToString();
mch_id = result.GetValue("mch_id").ToString();
package = "prepay_id=" + result.GetValue("prepay_id").ToString();
}
var signType = "MD5";
var timeStamp = ((DateTime.Now.Ticks - TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(, , )).Ticks) / ).ToString();
XcxPayData applet = new XcxPayData();
applet.SetValue("appId", appId);
applet.SetValue("nonceStr", nonceStr);
applet.SetValue("package", package);
applet.SetValue("signType", signType);
applet.SetValue("timeStamp", timeStamp);
var appletSign = applet.MakeSign();
return Json(new { timeStamp, nonceStr, package, signType, paySign = appletSign, Result = flag, msg });
}
catch (Exception ex)
{
return Json(new { Result = false, msg = "缺少参数" });
}
#endregion
} /// <summary>
/// 微信小程序支付回调通知
/// </summary>
/// <returns></returns>
public void WeXcxNotifyUrl()
{
Pay.Log Log = new Pay.Log(XcxPayConfig.LogPath);
Log.Info("WxXcxNotifyUrl", "支付回调");
XcxPayNotify notify = new XcxPayNotify(System.Web.HttpContext.Current);
XcxPayData notifyData = notify.GetNotifyData(); //检查支付结果中transaction_id是否存在
if (!notifyData.IsSet("transaction_id"))
{
//若transaction_id不存在,则立即返回结果给微信支付后台
XcxPayData res = new XcxPayData();
res.SetValue("return_code", "FAIL");
res.SetValue("return_msg", "支付结果中微信订单号不存在");
Log.Error(this.GetType().ToString(), "The Pay result is error : " + res.ToXml());
Response.Write(res.ToXml());
Response.End();
} string transaction_id = notifyData.GetValue("transaction_id").ToString(); //查询订单,判断订单真实性
if (!XcxQueryOrder(transaction_id))
{
//若订单查询失败,则立即返回结果给微信支付后台
XcxPayData res = new XcxPayData();
res.SetValue("return_code", "FAIL");
res.SetValue("return_msg", "订单查询失败");
Log.Error(this.GetType().ToString(), "Order query failure : " + res.ToXml()); Response.Write(res.ToXml());
Response.End();
}
//查询订单成功
else
{
XcxPayData res = new XcxPayData();
res.SetValue("return_code", "SUCCESS");
res.SetValue("return_msg", "OK");
Log.Info(this.GetType().ToString(), "Order query success : " + res.ToXml());
Log.Info(this.GetType().ToString(), "Order query success,notifyData : " + notifyData.ToXml());
var returnCode = notifyData.GetValue("return_code").ToString();
var transactionNo = transaction_id;//微信订单号
var outTradeNo = notifyData.GetValue("out_trade_no").ToString();//自定义订单号
var attach = notifyData.GetValue("attach").ToString();//身份证
var endTime = notifyData.GetValue("time_end").ToString();//交易结束时间
//var body = notifyData.GetValue("body").ToString();//projectIdlist
var totalFee = notifyData.GetValue("total_fee").ToString(); ;//支付金额 int userId = Convert.ToInt32(attach.Split('|')[]);
string msg;
try
{
//var result = OrderBll.Value.CompleteWePay(userId, totalFee, transactionNo, returnCode, outTradeNo, attach, endTime, out msg); var result = true; Log.Info(this.GetType().ToString(), "CompleteWePay:" + result);
}
catch (Exception e)
{
Log.Error(this.GetType().ToString(), "CompleteWePay:" + e.ToString());
} Response.Write(res.ToXml());
Response.End();
}
} /// <summary>
/// 查询订单
/// </summary>
/// <param name="transaction_id">微信交易订单号</param>
/// <returns></returns>
private bool XcxQueryOrder(string transaction_id)
{
XcxPayData req = new XcxPayData();
req.SetValue("transaction_id", transaction_id);
XcxPayData res = XcxPayApi.OrderQuery(req);
if (res.GetValue("return_code").ToString() == "SUCCESS" && res.GetValue("result_code").ToString() == "SUCCESS")
{
return true;
}
else
{
return false;
}
}
}
}

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

 public static class Serialize
{
public static string ToJson(this object obj)
{
return JsonConvert.SerializeObject(obj);
} public static T JsonTo<T>(this string obj)
{
return (T)JsonConvert.DeserializeObject(obj, typeof(T));
}
}

支付完成后,微信会把相关支付信息通知支付回调接口发送给商户,商户在回调接口中接收处理,并返回应答。注意,支付回调接口必须要在外网可以访问到、不能有身份验证(允许匿名访问)、接口无异常,此外如果微信收到商户的应答不是成功或超时,微信会认为通知失败,微信会通过一定的策略定期重新发起通知,尽可能提高通知的成功率(通知频率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. 吴裕雄 python 机器学习——模型选择损失函数模型

    from sklearn.metrics import zero_one_loss,log_loss def test_zero_one_loss(): y_true=[1,1,1,1,1,0,0,0 ...

  2. JAVA常量池、栈、堆的比较(转载)

    今天在学JAVA的数据存储位置的时候,看到了一篇博文感觉不错,特此转载: http://www.cnblogs.com/Eason-S/p/5658230.html JAVA中,有六个不同的地方可以存 ...

  3. 五、request模块

    描述:requests是python的一个第三方HTTP(Hypertext Transfer Protocol,超文本传输协议)库,它比python自带的网络库urllib更加简单.方便和人性化:使 ...

  4. 连接数据库报错Access denied for user 'root'@'localhost' (using password:YES)

    报错信息为:pymysql.err.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using pa ...

  5. powerbuilder连接oracle数据库

    一.打开已经安装好的pb9.0,主界面菜单栏有个两个圆柱形就行数据库连接,点击database. 二.选择oracle版本,由于数据库版本是9i,可以使用084 oracle8/8i.右键--选择ne ...

  6. How2j学习java-3下载 ECLIPSE

    1.下载并解压Eclipse 下载并解压到e:/eclipse,目录情况如图所示.注: 这个Eclipse是64位的,应该使用本站提供的JDK(64)位,下载地址:JDK. 如果JDK位数和 Ecli ...

  7. PHP如何实现处理过期或者超时订单的,并还原库存

    订单是我们在日常开发中经常会遇到的一个功能,最近在做一个订单过期与超时的开发.订单过期与超时就不用我解释了吧,其实两者都是同一个问题来着,就是订单未支付的处理,我们要做的是对这些未支付的订单到了一定时 ...

  8. Linux - 常用GUI软件

    1. gdebi -- 可以代替Ubuntu software安装软件 2. System monitor -- 监控流量 3. uget -- 下载软件 4. Okular -- pdf reade ...

  9. 运行时Runtime的API

    const char * class_getName(Class cls); 返回类的名称. Class class_getSuperclass(Class cls); 返回类的超类. Class c ...

  10. window系统mysql安装后获取默认密码

    未设置密码,获取默认密码方法 第一步:进去mysql根目录下,如果没有data文件夹可以新建一个,找不到my.ini文件也新建一个(在根目录下创建的my.ini,重新配置的参数会覆盖源文件的参数,所以 ...