支付宝接口源代码(刚完成,应该是目前最好的了)
导读:
支付宝的接口调用很不方便,刚做好一个封装,实现了虚拟交易和实物交易。
解决方案中有三个项目以及NDoc生成的文档,简单的序列图:CommonAliPay,封装的支付宝接口。
TestAli,asp.net的测试项目
TestCommonAliPay,Nunit的测试项目。
源代码下载地址:http://www.cnblogs.com/Files/bluewater/CommonAliPay.rar
调用方法:
1、引入CommonAliPay.dll
2、实现支付宝服务接口的方法调用方式:
复制 保存
AliPay ap =
newAliPay();
stringkey =
"";
//填写自己的key
stringpartner =
"";
//填写自己的Partner
StandardGoods bp =
newStandardGoods(
"trade_create_by_buyer", partner, key,
"MD5",
"卡2",
Guid.NewGuid().ToString(), 2.551m, 1,
"hao_ding2000@yahoo.com.cn",
"hao_ding2000@yahoo.com.cn",
"EMS", 25.00m,
"BUYER_PAY",
"1");
bp.Notify_Url = "http:
//203.86.79.185/ali/notify.aspx";
ap.CreateStandardTrade("https:
//www.alipay.com/cooperate/gateway.do", bp, this);
上面是通用的调用方式。
下面是只支持虚拟货物的方式:
复制 保存
stringkey =
"";
//填写自己的key
stringpartner =
"";
//填写自己的Partner
AliPay ap =
newAliPay();
DigitalGoods bp =
newDigitalGoods(
"create_digital_goods_trade_p", partner, key,
"MD5",
"卡2",
Guid.NewGuid().ToString(), 2.551m, 1,
"hao_ding2000@yahoo.com.cn",
"hao_ding2000@yahoo.com.cn");
bp.Notify_Url = "http:
//203.86.79.185/ali/notify.aspx";
ap.CreateDigitalTrade("https:
//www.alipay.com/cooperate/gateway.do", bp, this);
3、实现支付宝通知接口方法的调用(支持虚拟和实物):
复制 保存
protected
voidPage_Load(
objectsender, EventArgs e)
{
stringkey =
"";
//填写自己的key
stringpartner =
"";
//填写自己的Partner
AliPay ap =
newAliPay();
stringnotifyid = Request.Form[
"notify_id"];
Verify v =
newVerify(
"notify_verify", partner, notifyid);
ap.WaitSellerSendGoods +=
newAliPay.ProcessNotifyEventHandler(ap_WaitSellerSendGoods);
ap.WaitBuyerPay +=
newAliPay.ProcessNotifyEventHandler(ap_WaitBuyerPay);
ap.ProcessNotify(
this, "https:
//www.alipay.com/cooperate/gateway.do", key, v, "utf-8");
}
voidap_WaitBuyerPay(
objectsender, NotifyEventArgs e)
{
// //加入自己的处理逻辑
Log4net.log.Error(
"wait buyer pay fire");
}
private
voidap_WaitSellerSendGoods(
objectsender, NotifyEventArgs e)
{
//加入自己的处理逻辑
Log4net.log.Error(
"WaitSellerSendGoods fire");
}
支付宝的交易状态都被定义成了类似名称的事件。
部分源代码解析:
1、解析Forms集合到NotifyEventArgs类,因为后面此类的数据要用来做MD5Sign,所以所有值类型,不能存在初始值,如:int的0等。因此用Nullable范型。
复制 保存
privateNotifyEventArgs ParseNotify(NameValueCollection nv,
objectobj)
{
PropertyInfo[] propertyInfos = obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach(PropertyInfo pi
inpropertyInfos)
{
stringv = nv.Get(pi.Name.ToLower());
if(v !=
null)
{
if(pi.PropertyType ==
typeof(
string))
{
pi.SetValue(obj, v,
null);
}
else
if(pi.PropertyType ==
typeof(
int?))
{
pi.SetValue(obj,
int.Parse(v),
null);
}
else
if(pi.PropertyType ==
typeof(
decimal?))
{
pi.SetValue(obj,
decimal.Parse(v),
null);
}
else
if(pi.PropertyType ==
typeof(DateTime?))
{
pi.SetValue(obj, DateTime.Parse(v),
null);
}
else
if(pi.PropertyType ==
typeof(
bool))
{
pi.SetValue(obj,
bool.Parse(v),
null);
}
else
{
//转型失败会抛出异常
pi.SetValue(obj, v,
null);
}
}
}
return(NotifyEventArgs) obj;
}
2、从类型中获取排序后的参数
复制 保存
///
/// 获取排序后的参数
///
///
///
privateSortedList<
string,
string>GetParam(
objectobj)
{
PropertyInfo[] propertyInfos = obj.GetType().GetProperties(
BindingFlags.Public | BindingFlags.Instance);
SortedList<
string,
string>sortedList
=
newSortedList<
string,
string>(StringComparer.CurrentCultureIgnoreCase);
foreach(PropertyInfo pi
inpropertyInfos)
{
if(pi.GetValue(obj,
null) !=
null)
{
if(pi.Name ==
"Sign"|| pi.Name ==
"Sign_Type")
{
continue;
}
sortedList.Add(pi.Name.ToLower(), pi.GetValue(obj,
null).ToString());
}
}
returnsortedList;
}
3、从SortedList中产生参数
复制 保存
private
stringGetUrlParam(SortedList<
string,
string>sortedList,
boolisEncode)
{
StringBuilder param =
newStringBuilder();
StringBuilder encodeParam =
newStringBuilder();
if(isEncode ==
false)
{
foreach(KeyValuePair<
string,
string>kvp
insortedList)
{
stringt =
string.Format(
"{0}={1}", kvp.Key, kvp.Value);
param.Append(t +
"&");
}
returnparam.ToString().TrimEnd('&');
}
else
{
foreach(KeyValuePair<
string,
string>kvp
insortedList)
{
stringet =
string.Format(
"{0}={1}",
HttpUtility.UrlEncode(kvp.Key), HttpUtility.UrlEncode(kvp.Value));
encodeParam.Append(et +
"&");
}
returnencodeParam.ToString().TrimEnd('&');
}
}
下载地址
http://www.cnblogs.com/Files/bluewater/CommonAliPay.rar
因为时间很紧,有些地方还不完善,大家提出意见,有时间我会修改的
网上赠与服务集成技术文档V1.35.pdf
本文转自
http://www.chenjiliang.com/Article/View.aspx?ArticleID=2125&TypeID=84
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- 2021-02-17|2021-02-17 小儿按摩膻中穴-舒缓咳嗽
- 人生两件宝(好身体,好心情!)
- 基于微信小程序带后端ssm接口小区物业管理平台设计
- 2020-04-07vue中Axios的封装和API接口的管理
- 调取接口时报404错误(ID:16)
- CICC(脑机接口,科幻几近成真())
- 25篇中考随笔
- 康德式公平倾向
- 这座媲美重庆的绝色山城,深藏国宝级景点,更有绝美高山花海!