笔者最近的项目中使用到了支付的功能,也遇到了一些坑。在这里跟大家分享一下。
相关配置
1.向支付宝申请, 与支付宝签约,获得商户ID(partner)和账号ID(seller)和私钥(privateKey)
2.下载支付宝SDK,导入需要的一些头文件。
- 集成中可能遇到的问题
-
1.集成SDK编译时找不到 openssl/asn1.h 文件
解决方法:Build Settings --> Search Paths --> Header Search paths : $(SRCROOT)/支付宝集成/Classes/Alipay
- 2.链接时:找不到 SystemConfiguration.framework 这个库
解决方法:重新导入这个库。
3.在Appdelegate里面进行回调的相关配置
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
BOOL result = [UMSocialSnsService handleOpenURL:url];
if ([url.host isEqualToString:@"safepay"]) {
//跳转支付宝钱包进行支付,处理支付结果
[[AlipaySDK defaultService] processOrderWithPaymentResult:url standbyCallback:^(NSDictionary *resultDic) {
}];
}
if (result == FALSE) {
return [WXApi handleOpenURL:url delegate:[WXApiManager sharedManager]];
}
return result;
}```
``#pragma mark ios9的回调``
-
(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary
*)options
{
BOOL result = [UMSocialSnsService handleOpenURL:url];if ([url.host isEqualToString:@"safepay"]) {
//跳转支付宝钱包进行支付,处理支付结果
[[AlipaySDK defaultService] processOrderWithPaymentResult:url standbyCallback:^(NSDictionary *resultDic) {}];
}
if (result == FALSE) {
return [WXApi handleOpenURL:url delegate:[WXApiManager sharedManager]];
}
return result;
}```
到了这里,一些基本的配置就已经完成了。
4.建立支付的model,也可以直接使用官方的。主要在于.m文件中desprication方法的实现。
- (NSString *)description {
NSMutableString * discription = [NSMutableString string];
if (self.partner) {
[discription appendFormat:@"partner=\"%@\"", self.partner];
}
if (self.seller) {
[discription appendFormat:@"&seller_id=\"%@\"", self.seller];
}
if (self.tradeNO) {
[discription appendFormat:@"&out_trade_no=\"%@\"", self.tradeNO];
}
if (self.productName) {
[discription appendFormat:@"&subject=\"%@\"", self.productName];
}
if (self.productDescription) {
[discription appendFormat:@"&body=\"%@\"", self.productDescription];
}
if (self.amount) {
[discription appendFormat:@"&total_fee=\"%@\"", self.amount];
}
if (self.notifyURL) {
[discription appendFormat:@"¬ify_url=\"%@\"", self.notifyURL];
}
if (self.service) {
[discription appendFormat:@"&service=\"%@\"",self.service];//mobile.securitypay.pay
}
if (self.paymentType) {
[discription appendFormat:@"&payment_type=\"%@\"",self.paymentType];//1
}
if (self.inputCharset) {
[discription appendFormat:@"&_input_charset=\"%@\"",self.inputCharset];//utf-8
}
if (self.itBPay) {
[discription appendFormat:@"&it_b_pay=\"%@\"",self.itBPay];//30m
}
if (self.showUrl) {
[discription appendFormat:@"&return_url=\"%@\"",self.showUrl];//m.alipay.com
}
if (self.out_context) {
[discription appendFormat:@"&out_context=\"%@\"",self.out_context];//
}
// if (self.sign) {
// [discription appendFormat:@"&sign=\"%@\"",self.sign];
//
// }
// if (self.rsaDate) {
// [discription appendFormat:@"&sign_date=\"%@\"",self.rsaDate];
// }
// if (self.appID) {
// [discription appendFormat:@"&app_id=\"%@\"",self.appID];
// }
// for (NSString * key in [self.extraParams allKeys]) {
// [discription appendFormat:@"&%@=\"%@\"", key, [self.extraParams objectForKey:key]];
// }
return discription;
}
调起支付
在点击支付的按钮中,添加事件,可以参考官方的demo,用客户端进行签名,不过一般都是服务器返回数据的。这边给大家参考一下。
把这个model发送给支付宝就可以了 ,但是在这之前需要拼接这些数据,可以参考上面的介绍。我这边是将这个模型带回到了控制器里面,在调起支付后,发送给支付宝。
这里面主要的方法:
NSString *orderSpec = [model description];
// NSLog(@"00000000%@",orderSpec) ;
//url转义
//获取私钥并将商户信息签名,外部商户可以根据情况存放私钥和签名,只需要遵循RSA签名规范,并将签名字符串base64编码和UrlEncode
// id signer = CreateRSADataSigner(privateKey);
// NSString *signedString = [signer signString:orderSpec];
NSString *signedString = (NSString *)
CFBridgingRelease(CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,
(CFStringRef)model.sign, NULL, (CFStringRef)@"!*'();:@&=+$,/?%#[]",kCFStringEncodingUTF8));
// NSString * signedString = [NSString stringWithFormat:@"%@",model.sign];
//将签名成功字符串格式化为订单字符串,请严格按照该格式
NSString *orderString = nil;
if (signedString != nil) {
orderString = [NSString stringWithFormat:@"%@&sign=\"%@\"&sign_type=\"%@\"",
orderSpec, signedString, @"RSA"];
// NSLog(@"%@",orderString);
[[AlipaySDK defaultService] payOrder:orderString fromScheme:appScheme callback:^(NSDictionary *resultDic) {
NSLog(@"%@",resultDic);
NSString *resultStatus = [resultDic objectForKey:@"resultStatus"] ;
if ([resultStatus isEqualToString:@"9000"]){
[self successView];
}
else{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"支付失败" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil] ;
[alertView show] ;
}
}];
}
} failure:^{
}];