今天又做了微信支付,对于客户端来说,微信支付和支付宝支付相比较还是没有多大差别的,只不过微信支付上传的参数多了些。(但听后台说微信支付较复杂)。
先说下微信支付的流程(个人的理解):(先附上官方文档吧:https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=8_5)
1.首先我们需要在微信开放平台中进行注册成为其开发者,然后在微信开发平台创建自己的应用,再给应用开通支付功能(这些都很常规了)。
2.我们需要往我们自己的项目中导入微信支付所需的几个框架(可以直接使用官方demo中指定框架,也可以通过cocoapods进行集成)。
3.在项目中做相应的配置,在URL Types中添加URL Schemes,填写的内容是我们从微信开发平台上创建的应用获取的。填写URL Schemes是为了支付成功后能从微信成功跳转回我们自己的App。
4.在项目中写代码:
先在AppDelegate中向微信注册我们的App:(首先需要导入微信头文件“WXApi.h”)
// 向微信注册
[WXApi registerApp:@"wx2355549c49f5cf73"];
在AppDelegate中对微信返回我们App进行处理:
// 仅支持iOS9以上系统
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary
{
//6.3的新的API调用,是为了兼容国外平台(例如:新版facebookSDK,VK等)的调用[如果用6.2的api调用会没有回调],对国内平台没有影响
BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url options:options];
if (!result) {
// 其他如支付等SDK的回调
if ([url.host isEqualToString:@"safepay"]) {
//跳转支付宝钱包进行支付,处理支付结果
[[AlipaySDK defaultService] processOrderWithPaymentResult:url standbyCallback:^(NSDictionary *resultDic) {
NSLog(@"result = %@",resultDic);
}];
}
if ([url.scheme isEqualToString:@"wx2355549c49f5cf73"])
{
return [WXApi handleOpenURL:url delegate:(id
}
}
return result;
}
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url];
if (!result) {
// 其他如支付等SDK的回调
if ([url.host isEqualToString:@"safepay"]) {
//跳转支付宝钱包进行支付,处理支付结果
[[AlipaySDK defaultService] processOrderWithPaymentResult:url standbyCallback:^(NSDictionary *resultDic) {
NSLog(@"result = %@",resultDic);
}];
}
if ([url.scheme isEqualToString:@"wx2355549c49f5cf73"])
{
return [WXApi handleOpenURL:url delegate:(id
}
}
return result;
}
- (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);
}];
}
if ([url.scheme isEqualToString:@"wx2355549c49f5cf73"])
{
return [WXApi handleOpenURL:url delegate:(id
}
return YES;
}
代码看着多实际都一样,也都是复制粘贴的,我的代码中还有支付宝回调的代码。
遵守微信协议(WXApiDelegate),在代理方法中处理支付回调的结果
//微信回调,有支付结果的时候会回调这个方法
- (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;
}
}
}
}
支付结果以通知的方式发送出去。
接下来就是支付代码了,我们需要将商品的订单信息发送给后台然后让后台返回我们在跳转到微信支付页面所需要的参数(参数好几个)
在微信支付的控制器中同样需要导入微信头文件"WXApi.h"。我们在我们的App点击微信支付的时候首先需要判断用户是否安装了微信,如果安装了直接跳转,如果没有安装则需要给用户一个提示,代码:
// 判断手机有没有微信
if ([WXApi isWXAppInstalled]) {
NSLog(@"已经安装了微信...");
}else{
NSLog(@"没有安装微信...");
}
跳转到微信支付页面的代码:(那些参数如:appid、partnerid...都是我们从我们的后台那里获取的)
[weakSelf WXPayWithAppid:appid partnerid:partnerid prepayid:prepayid package:package noncestr:noncestr timestamp:timestamp sign:sign];
#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(@"吊起微信失败...");
}
}
我们在AppDelegate中将微信支付返回的支付结果(是否成功)以通知的方式进行了发送,我们在支付的控制器中要对该消息进行监听:
// 监听一个通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getOrderPayResult:) name:@"ORDER_PAY_NOTIFICATION" object:nil];
对监听到的消息进行处理:
#pragma mark - 收到支付成功的消息后作相应的处理
- (void)getOrderPayResult:(NSNotification *)notification
{
if ([notification.object isEqualToString:@"success"]) {
NSLog(@"支付成功");
[SVProgressHUD showSuccessWithStatus:@"支付成功"];
} else {
NSLog(@"支付失败");
[SVProgressHUD showErrorWithStatus:@"支付失败"];
}
}
到这里微信支付也就结束了,我们可以到微信商户中去确认下我们到底有没有支付成功。
本篇博客可这内容挺多,主要我粘贴的代码挺多,只要理清了微信支付的流程就会感觉本篇博客内容并不是很多。
希望帮助到那些需要帮助的朋友们!