gpt4 book ai didi

iOS支付宝、微信、银联支付集成封装调用(上)

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 29 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章iOS支付宝、微信、银联支付集成封装调用(上)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

一.集成支付宝支付 。

支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 。

支付宝集成官方demo https://docs.open.alipay.com/54/104509/ 。

1.导入sdk并添加依赖库 。

启动ide(如xcode),把ios包中的压缩文件中以下文件拷贝到项目文件夹下,并导入到项目工程中.

  • alipaysdk.bundle
  • alipaysdk.framework

在build phases选项卡的link binary with libraries中,增加以下依赖 。

iOS支付宝、微信、银联支付集成封装调用(上)

2.在appdelegate里面添加代码 。

引入头文件 。

?
1
#import <alipaysdk/alipaysdk.h>

添加支付回调方法 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
- ( 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”选项中,点击“+”.

iOS支付宝、微信、银联支付集成封装调用(上)

4.在支付的地方添加吊起支付宝方法 。

引入头文件 。

?
1
#import <alipaysdk/alipaysdk.h>

支付地方添加调起支付宝代码 。

?
1
2
3
4
5
6
7
8
[[alipaysdk defaultservice] payorder:@ "此处是从后台拿到的订单签名信息" fromscheme:@ "这里边填写第三步配置的url scheme" callback:^(nsdictionary *resultdic) {
    nslog(@ "=====%@" ,resultdic);
    if ([resultdic[@ "resultstatus" ]intvalue] == 9000) {
     nslog(@ "成功" );
    } else {
     nslog(@ "失败" );
    }
   }];

二.集成微信支付 。

微信支付集成官方文档 https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=8_5 。

微信集成官方demo https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=11_1 。

1:导入sdk并添加依赖库 。

iOS支付宝、微信、银联支付集成封装调用(上)

记得添加这两个配置 (画重点)注意看官方demo里边的readme,拿起小本子记下来 。

iOS支付宝、微信、银联支付集成封装调用(上)

2:在appdelegate里边添加代码 。

引入头文件 。

?
1
2
3
#import <wxapi.h>
并添加回调代理
@interface appdelegate ()<wxapidelegate>

注册微信 。

- (bool)application:(uiapplication*)application didfinishlaunchingwithoptions:(nsdictionary*)launchoptions { [wxapi registerapp:@"填写申请的appid"];returnyes; }

添加支付回调方法,上边支付宝集成代码里边一样的代码

  。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
- ( 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;
}

添加微信支付回调代理方法 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//微信回调,有支付结果的时候会回调这个方法
- ( 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.在支付地方添加调起微信方法 。

引入头文件 。

?
1
#import <wxapi.h>

支付地方添加调起微信代码 。

?
1
if ([wxapi iswxappinstalled]) {<br>nslog(@ "已经安装了微信..." );<br><br> //这里调用后台接口获取订单的详细信息,然后调用微信支付方法<br>}else{<br><br>}<br><br>#pragma mark 微信支付方法<br><br>- (void)wxpaywithappid:(nsstring *)appid partnerid:(nsstring *)partnerid prepayid:(nsstring *)prepayid package:(nsstring *)package noncestr:(nsstring *)noncestr timestamp:(nsstring *)timestamp sign:(nsstring *)sign{<br><br>//需要创建这个支付对象<br>payreq *req = [[payreq alloc] init];<br>//由用户微信号和appid组成的唯一标识,用于校验微信用户<br>req.openid = appid;<br>// 商家id,在注册的时候给的<br>req.partnerid = partnerid;<br>// 预支付订单这个是后台跟微信服务器交互后,微信服务器传给你们服务器的,你们服务器再传给你<br>req.prepayid = prepayid;<br>// 根据财付通文档填写的数据和签名<br>req.package = package;<br>// 随机编码,为了防止重复的,在后台生成<br>req.noncestr = noncestr;<br>// 这个是时间戳,也是在后台生成的,为了验证支付的<br>nsstring * stamp = timestamp;<br>req.timestamp = stamp.intvalue;<br>// 这个签名也是后台做的<br>req.sign = sign;<br>if ([wxapi sendreq:req]) { //发送请求到微信,等待微信返回onresp<br>nslog(@"吊起微信成功...");<br>}else{<br>nslog(@"吊起微信失败...");<br>}<br>}

三.银联支付集成 。

银联手机控件支付 https://open.unionpay.com/ajweb/index 。

将需要的库文件拖入到自己的项目中,sdk文件所在目录upmp_iphone/paymentcontrol,包含 uppaymentcontrol.h、libpaymentcontrol.a两个文件(老版本是三个,这点不一样).

iOS支付宝、微信、银联支付集成封装调用(上)

方法需要的几个参数文档上都写的有,tn是交易流水号,你们服务器端传给你的,咱们客户端只有凭借这个参数才能调用支付控件 进行支付的.

到此:第三方支付集成大致集成,请期待下一篇文章对于三种集成调用封装代码 。

下面是我们分享的ios支付宝、微信、银联支付集成封装调用(下):http://www.zzvips.com/article/158562.html 。

原文链接:http://www.cnblogs.com/guohai-stronger/p/8971508.html 。

最后此篇关于iOS支付宝、微信、银联支付集成封装调用(上)的文章就讲到这里了,如果你想了解更多关于iOS支付宝、微信、银联支付集成封装调用(上)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com