一、下载需要的SDK平台,这里我们以iOS为例
下载地址是:Ping++_ios下载地址
解压下载好的SDK
ping++sdk目录我们新建工程,引入lib,我们吧解压好的lib拷贝到我们新建的工程的根目录,进行下面操作
右键工程出现这个
引入完成后目录结构如图
下面这个是我们需要修改一个设备支持,因为导入了apple pay 支持到iOS8 以后,不用需要删除对应lib/channels下的SDK
导入完成的目录结构支持Ping++需要引入的系统类库
1. CFNetwork.framework
2. SystemConfiguration.framework
3. Security.framework
4. libc++.tbd (ios9 之前是:libc++.dylib)
5. libsqlite3.0.tbd
百度钱包需要的库
* libstdc++.tbd
* CoreTelephony.framework
* AddressBook.framework
* AddressBookUI.framework
* AudioToolbox.framework
* CoreAudio.framework
* CoreGrapics.framework
* ImageIO.framework
* MapKit.framework
* MessageUI.framework
* MobileCoreServices.framework
* QuartzCore.framework
Apple Pay 如果用到导入,不用则不导入
PassKit.framework
如果不需要某些支付渠道,则可以直接删除lib/Channels 下的目录即可
添加 URL Schemes:在 Xcode 中,选择你的工程设置项,选中 TARGETS 一栏,
在 Info 标签栏的 URL Types 添加 URL Schemes,如果使用微信,填
入微信平台上注册的应用程序 id(为 wx 开头的字符串),如果不使
用微信,则自定义,建议起名稍复杂一些,尽量避免与其他程序冲突。
允许英文字母和数字,首字母必须是英文字母,不允许特殊字符。
添加 Other Linker Flags
: 在Build Setting
搜索 Other Linker Flags
其后添加 -ObjC
2.1.0 及以上版本,可打开 Debug 模式,打印出 log,方便调试。开启方法:[Pingpp setDebugMode:YES]
;
注意:微信支付必需有微信客户端才可以使用,百度钱包只能在真机使用
iOS9 之后info。plist 配置如图所示:
URL scheme配置
info 文件配置
支付成功后的回调
在工程入口写:
使用C的库支持
使用的时候导入C的库
工程中得支付代码
//
// ViewController.m
// PingppUse
//
// Created by plee on 15/10/14.
// Copyright © 2015年 franklee. All rights reserved.
//
#import "ViewController.h"
#include <sys/socket.h>
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>
#import "Pingpp.h"
#define KBtn_width 200
#define KBtn_height 40
#define KXOffSet (self.view.frame.size.width - KBtn_width) / 2
#define KYOffSet 20
#define kWaiting @"正在获取支付凭据,请稍后..."
#define kNote @"提示"
#define kConfirm @"确定"
#define kErrorNet @"网络错误"
#define kResult @"支付结果:%@"
#define kPlaceHolder @"支付金额"
#define kMaxAmount 9999999
#define kUrlScheme @"testdemo" // 这个是你定义的 URL Scheme,支付宝、微信支付和测试模式需要。
#define kUrl @"http://218.244.151.190/demo/charge" // 你的服务端创建并返回 charge 的 URL 地址,此地址仅供测试用。
@interface ViewController ()
@property (strong,nonatomic) NSString * channel;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)sendChargeOrder:(NSInteger )tag{
if (tag == 1) {
self.channel = @"wx";
} else if (tag == 2) {
self.channel = @"alipay";
} else if (tag == 3) {
self.channel = @"upacp";
} else if (tag == 4) {
self.channel = @"bfb";
} else {
return;
}
//充值数额
NSString * amount;
NSString *amountStr = [NSString stringWithFormat:@"%@", amount];
NSURL* url = [NSURL URLWithString:kUrl];
NSMutableURLRequest * postRequest=[NSMutableURLRequest requestWithURL:url];
NSDictionary* dict = @{
@"channel" : self.channel,
@"amount" : amountStr
};
NSData* data = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:nil];
NSString *bodyData = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
[postRequest setHTTPBody:[NSData dataWithBytes:[bodyData UTF8String] length:strlen([bodyData UTF8String])]];
[postRequest setHTTPMethod:@"POST"];
[postRequest setValue:@"application/json; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
ViewController * __weak weakSelf = self;
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:postRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
if (httpResponse.statusCode != 200) {
return;
}
if (connectionError != nil) {
NSLog(@"error = %@", connectionError);
return;
}
NSString* charge = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"charge = %@", charge);
dispatch_async(dispatch_get_main_queue(), ^{
[Pingpp createPayment:charge viewController:weakSelf appURLScheme:kUrlScheme withCompletion:^(NSString *result, PingppError *error) {
NSLog(@"completion block: %@", result);
if (error == nil) {
NSLog(@"PingppError is nil");
} else {
NSLog(@"PingppError: code=%lu msg=%@", (unsigned long)error.code, [error getMsg]);
}
}];
});
}];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
到此处就可以正常使用了
info文件添加方式(ios9 之后加入适配HTTP,还有一些支付白名单)
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>weichat</string>
<string>weixin</string>
<string>alipay</string>
</array>
网友评论
"在 Info 标签栏的 URL Types 添加 URL Schemes,如果使用微信,填
入微信平台上注册的应用程序 id(为 wx 开头的字符串),如果不使
用微信,则自定义,建议起名稍复杂一些,尽量避免与其他程序冲突。
允许英文字母和数字,首字母必须是英文字母,不允许特殊字符。"
去哪获得微信平台ID呢,不是只需要一个ping++ key就行吗?
谢谢了楼主
http://sdk.dev.lurrpis.com/demo/