iOS支付宝、微信、银联支付集成封装调用(上)
一.集成支付宝支付
支付宝集成官方教程
支付宝集成官方demo
1.导入sdk并添加依赖库
启动ide(如xcode),把ios包中的压缩文件中以下文件拷贝到项目文件夹下,并导入到项目工程中。
- alipaysdk.bundle
- alipaysdk.framework
在build phases选项卡的link binary with libraries中,增加以下依赖
2.在appdelegate里面添加代码
引入头文件
#import <alipaysdk/alipaysdk.h>
添加支付回调方法
- (bool)application:(uiapplication *)application openurl:(nsurl *)url sourceapplication:(nsstring *)sourceapplication annotation:(id)annotation { if ([url.host isequaltostring:@"safepay"]) { // 支付跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processorderwithpaymentresult:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); }]; // 授权跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processauth_v2result:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); // 解析 auth code nsstring *result = resultdic[@"result"]; nsstring *authcode = nil; if (result.length>0) { nsarray *resultarr = [result componentsseparatedbystring:@"&"]; for (nsstring *subresult in resultarr) { if (subresult.length > 10 && [subresult hasprefix:@"auth_code="]) { authcode = [subresult substringfromindex:10]; break; } } } nslog(@"授权结果 authcode = %@", authcode?:@""); }]; } //此处是微信支付 if ([url.scheme isequaltostring:@"wxf6e443649d826e8e"]) { return [wxapi handleopenurl:url delegate:(id<wxapidelegate>)self]; } return yes; } // note: 9.0以后使用新api接口 - (bool)application:(uiapplication *)app openurl:(nsurl *)url options:(nsdictionary<nsstring*, id> *)options { if ([url.host isequaltostring:@"safepay"]) { // 支付跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processorderwithpaymentresult:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); }]; // 授权跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processauth_v2result:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); // 解析 auth code nsstring *result = resultdic[@"result"]; nsstring *authcode = nil; if (result.length>0) { nsarray *resultarr = [result componentsseparatedbystring:@"&"]; for (nsstring *subresult in resultarr) { if (subresult.length > 10 && [subresult hasprefix:@"auth_code="]) { authcode = [subresult substringfromindex:10]; break; } } } nslog(@"授权结果 authcode = %@", authcode?:@""); }]; } //此处是微信支付 if ([url.scheme isequaltostring:@"wxf6e443649d826e8e"]) { return [wxapi handleopenurl:url delegate:(id<wxapidelegate>)self]; } return yes; }
3.添加url scheme配置
在targets -> info 下最后一个找到url scheme,
点击“info”选项卡,在“url types”选项中,点击“+”。
4.在支付的地方添加吊起支付宝方法
引入头文件
#import <alipaysdk/alipaysdk.h>
支付地方添加调起支付宝代码
[[alipaysdk defaultservice] payorder:@"此处是从后台拿到的订单签名信息" fromscheme:@"这里边填写第三步配置的url scheme" callback:^(nsdictionary *resultdic) { nslog(@"=====%@",resultdic); if ([resultdic[@"resultstatus"]intvalue] == 9000) { nslog(@"成功"); } else { nslog(@"失败"); } }];
二.集成微信支付
微信支付集成官方文档
微信集成官方demo
1:导入sdk并添加依赖库
记得添加这两个配置 (画重点)注意看官方demo里边的readme,拿起小本子记下来
2:在appdelegate里边添加代码
引入头文件
#import <wxapi.h> 并添加回调代理 @interface appdelegate ()<wxapidelegate>
注册微信
添加支付回调方法,上边支付宝集成代码里边一样的代码
- (bool)application:(uiapplication *)application openurl:(nsurl *)url sourceapplication:(nsstring *)sourceapplication annotation:(id)annotation { if ([url.host isequaltostring:@"safepay"]) { // 支付跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processorderwithpaymentresult:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); }]; // 授权跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processauth_v2result:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); // 解析 auth code nsstring *result = resultdic[@"result"]; nsstring *authcode = nil; if (result.length>0) { nsarray *resultarr = [result componentsseparatedbystring:@"&"]; for (nsstring *subresult in resultarr) { if (subresult.length > 10 && [subresult hasprefix:@"auth_code="]) { authcode = [subresult substringfromindex:10]; break; } } } nslog(@"授权结果 authcode = %@", authcode?:@""); }]; } //此处是微信支付 if ([url.scheme isequaltostring:@"wxf6e443649d826e8e"]) { return [wxapi handleopenurl:url delegate:(id<wxapidelegate>)self]; } return yes; } // note: 9.0以后使用新api接口 - (bool)application:(uiapplication *)app openurl:(nsurl *)url options:(nsdictionary<nsstring*, id> *)options { if ([url.host isequaltostring:@"safepay"]) { // 支付跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processorderwithpaymentresult:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); }]; // 授权跳转支付宝钱包进行支付,处理支付结果 [[alipaysdk defaultservice] processauth_v2result:url standbycallback:^(nsdictionary *resultdic) { nslog(@"result = %@",resultdic); // 解析 auth code nsstring *result = resultdic[@"result"]; nsstring *authcode = nil; if (result.length>0) { nsarray *resultarr = [result componentsseparatedbystring:@"&"]; for (nsstring *subresult in resultarr) { if (subresult.length > 10 && [subresult hasprefix:@"auth_code="]) { authcode = [subresult substringfromindex:10]; break; } } } nslog(@"授权结果 authcode = %@", authcode?:@""); }]; } //此处是微信支付 if ([url.scheme isequaltostring:@"wxf6e443649d826e8e"]) { return [wxapi handleopenurl:url delegate:(id<wxapidelegate>)self]; } return yes; }
添加微信支付回调代理方法
//微信回调,有支付结果的时候会回调这个方法 - (void)onresp:(baseresp *)resp { // 支付结果回调 if([resp iskindofclass:[payresp class]]){ switch (resp.errcode) { case wxsuccess:{ //支付返回结果,实际支付结果需要去自己的服务器端查询 nsnotification *notification = [nsnotification notificationwithname:@"order_pay_notification" object:@"success"]; [[nsnotificationcenter defaultcenter] postnotification:notification]; break; } default:{ nsnotification *notification = [nsnotification notificationwithname:@"order_pay_notification"object:@"fail"]; [[nsnotificationcenter defaultcenter] postnotification:notification]; break; } } } }
3.添加url scheme配置
在targets -> info 下最后一个找到url scheme,
点击“info”选项卡,在“url types”选项中,点击“+” 填写申请的那个appid
。
同上
4.在支付地方添加调起微信方法
引入头文件
#import <wxapi.h>
支付地方添加调起微信代码
if ([wxapi iswxappinstalled]) {
nslog(@"已经安装了微信...");
//这里调用后台接口获取订单的详细信息,然后调用微信支付方法
}else{
}
#pragma mark 微信支付方法
- (void)wxpaywithappid:(nsstring *)appid partnerid:(nsstring *)partnerid prepayid:(nsstring *)prepayid package:(nsstring *)package noncestr:(nsstring *)noncestr timestamp:(nsstring *)timestamp sign:(nsstring *)sign{
//需要创建这个支付对象
payreq *req = [[payreq alloc] init];
//由用户微信号和appid组成的唯一标识,用于校验微信用户
req.openid = appid;
// 商家id,在注册的时候给的
req.partnerid = partnerid;
// 预支付订单这个是后台跟微信服务器交互后,微信服务器传给你们服务器的,你们服务器再传给你
req.prepayid = prepayid;
// 根据财付通文档填写的数据和签名
req.package = package;
// 随机编码,为了防止重复的,在后台生成
req.noncestr = noncestr;
// 这个是时间戳,也是在后台生成的,为了验证支付的
nsstring * stamp = timestamp;
req.timestamp = stamp.intvalue;
// 这个签名也是后台做的
req.sign = sign;
if ([wxapi sendreq:req]) { //发送请求到微信,等待微信返回onresp
nslog(@"吊起微信成功...");
}else{
nslog(@"吊起微信失败...");
}
}
三.银联支付集成
银联手机控件支付
银联官网
将需要的库文件拖入到自己的项目中,sdk文件所在目录upmp_iphone/paymentcontrol,包含 uppaymentcontrol.h、libpaymentcontrol.a两个文件(老版本是三个,这点不一样)。
方法需要的几个参数文档上都写的有,tn是交易流水号,你们服务器端传给你的,咱们客户端只有凭借这个参数才能调用支付控件 进行支付的。
到此:第三方支付集成大致集成,请期待下一篇文章对于三种集成调用封装代码
下面是我们分享的ios支付宝、微信、银联支付集成封装调用(下)、