- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS支付宝、微信、银联支付集成封装调用(上)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
一.集成支付宝支付 。
支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 。
支付宝集成官方demo https://docs.open.alipay.com/54/104509/ 。
1.导入sdk并添加依赖库 。
启动ide(如xcode),把ios包中的压缩文件中以下文件拷贝到项目文件夹下,并导入到项目工程中.
在build phases选项卡的link binary with libraries中,增加以下依赖 。
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”选项中,点击“+”.
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并添加依赖库 。
记得添加这两个配置 (画重点)注意看官方demo里边的readme,拿起小本子记下来 。
2:在appdelegate里边添加代码 。
引入头文件 。
1
2
3
|
#import <wxapi.h>
并添加回调代理
@interface appdelegate ()<wxapidelegate>
|
注册微信 。
。
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两个文件(老版本是三个,这点不一样).
方法需要的几个参数文档上都写的有,tn是交易流水号,你们服务器端传给你的,咱们客户端只有凭借这个参数才能调用支付控件 进行支付的.
到此:第三方支付集成大致集成,请期待下一篇文章对于三种集成调用封装代码 。
下面是我们分享的ios支付宝、微信、银联支付集成封装调用(下):http://www.zzvips.com/article/158562.html 。
原文链接:http://www.cnblogs.com/guohai-stronger/p/8971508.html 。
最后此篇关于iOS支付宝、微信、银联支付集成封装调用(上)的文章就讲到这里了,如果你想了解更多关于iOS支付宝、微信、银联支付集成封装调用(上)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
当有人使用微信(微信)分享我的一款游戏(用 JavaScript 制作)时,我正在使用 WeixinJSBridge 修改分享参数。 下面的代码位于一个很大的 JavaScript 文件(超过 250
我转微信了padplus来自wechaty-puppet-puppeteer的傀儡并发现它比 wechaty-puppet-puppeteer 更频繁地停止.即,wechaty-puppet-pupp
微信小程序一出,立马炸开了锅,都去搭建自己的开发环境,我这里也来尝尝先,之前发了一篇文章,有人问demo怎么导入? demo源代码(来自网络) 百度: https://pan.baidu.com
微信小程序可谓是今天最火的一个名词了,一经出现真是轰炸了整个开发人员,当然很多app开发人员有了一个担心,微信小程序的到来会不会给移动端app带来一个寒冬,身为一个android开发者我是不相信的,
memcache缓存存储用户信息7000秒 ? 1
微信开发生成带参数的二维码的讲解 在微信公众号平台开发者那里,在“账号管理”那里,有一项功能是“生成带参数的二维码”,通过这儿生成的二维码,只要通过微信扫一扫之后,会把事件自动推送到微信公众号上
某日,一同学给小的发了 Github 源码,说是可以轻松查到删除自己的微信好友,于是就开始了作死之路。 Github 源码请看:0x5e/wechat-deleted-friends 前言
近段时间山西的连续降雨,不少的城市都出现了洪灾,救灾物资匮乏,不少明星及爱心人士都纷纷向山西捐款,那么目前来说山西捐款的通道有哪些呢?在支付宝,微信上如何给山西捐款呢?下面就和小编一起来看看山西捐款
一.集成支付宝支付 支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 支付宝集成官方demo https://docs.o
一.越来越多的app增加第三方的功能,可能app有不同的页面但调用相同的支付方式,例如界面如下: 这两个页面都会使用第三方支付支付:(微信,支付宝,银联)如果在每一个页面都直接调用第三方支付的
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我安装了一个虚假的位置应用程序并将我的位置设置为不同的位置。然后打开谷歌地图和微信应用, Google map 将我的位置显示为我设置的(假的) 微信应用忽略虚假位置并检测真实位置(如何?) 然后我想
前言 支付分APP支付、H5支付、扫码支付等。app支付一般在app中使用,并且需要集成相应的支付SDK,H5支付多用于网页。如果你的APP不想集成支付SDK,又想实现支付功能,你可以在项目中使用
最近一直在调用微信的api,却发现一直调用不成功,纠结了好久,各方面找教程,找官方,官方里的文档也只是写得很模糊,说是按三步走。 1、申请app_id 2、填写包名3、 获取程序签
和平精英QQ/微信 每日登陆抽奖1~188Q币 活动两个QQ和微信都可以 每天登陆游戏并且玩一局 然后可以去活动界面抽奖Q币 QQ端(需玩一局):http://t.cn/Ai1Jn7Tz
目前,当我使用带有 Link 插件的 TinyMce4.5.1 时。即使我将属性 link_list 设置为 false,我也找不到隐藏默认 URL 选项(#top、#bottom)的方法。除了破
实际上,我正在尝试使用微信为我的 Web 应用程序设置 OAuth 登录。所以,我在微信上创建了一个帐户,并使用了一个测试帐户来无限访问。 因此,在测试帐户配置中,我已成功验证来自微信的 token
不管是腾讯还是新浪,查看他们的API,PHP都是有完整的接口,但对C#支持似乎都不是那么完善,都没有,腾讯是完全没有,新浪是提供第三方的,而且后期还不一定升级,NND,用第三方的动辄就一个类库,各种
和平精英QQ/微信 每日登陆抽奖1~188Q币/现金红包 活动两个QQ和微信都可以 QQ的登录游戏和分享好友即可获得三次抽奖次数 微信登录游戏就可以抽奖 如果没有反应就分享链接出去从分享的链接进
我想做什么 我正在尝试将我自己的基于 WebGL 的引擎移植到微信小游戏环境,目前只是尝试让 WebGL 上下文被粉红色清除: 有什么问题 我已经按照腾讯提供的示例以及 ThreeJS 示例来设置游戏
我是一名优秀的程序员,十分优秀!