一、下載需要的SDK平臺(tái)普碎,這里我們以iOS為例
下載地址是:Ping++_ios下載地址
解壓下載好的SDK
我們新建工程吼肥,引入lib,我們吧解壓好的lib拷貝到我們新建的工程的根目錄麻车,進(jìn)行下面操作
引入完成后目錄結(jié)構(gòu)如圖
下面這個(gè)是我們需要修改一個(gè)設(shè)備支持缀皱,因?yàn)閷?dǎo)入了apple pay 支持到iOS8 以后,不用需要?jiǎng)h除對(duì)應(yīng)lib/channels下的SDK
支持Ping++需要引入的系統(tǒng)類(lèi)庫(kù)
1. CFNetwork.framework
2. SystemConfiguration.framework
3. Security.framework
4. libc++.tbd (ios9 之前是:libc++.dylib)
5. libsqlite3.0.tbd
百度錢(qián)包需要的庫(kù)
* 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 如果用到導(dǎo)入动猬,不用則不導(dǎo)入
PassKit.framework
如果不需要某些支付渠道啤斗,則可以直接刪除lib/Channels 下的目錄即可
添加 URL Schemes:在 Xcode 中,選擇你的工程設(shè)置項(xiàng)枣察,選中 TARGETS 一欄争占,
在 Info 標(biāo)簽欄的 URL Types 添加 URL Schemes,如果使用微信序目,填
入微信平臺(tái)上注冊(cè)的應(yīng)用程序 id(為 wx 開(kāi)頭的字符串)臂痕,如果不使
用微信,則自定義猿涨,建議起名稍復(fù)雜一些握童,盡量避免與其他程序沖突。
允許英文字母和數(shù)字叛赚,首字母必須是英文字母澡绩,不允許特殊字符。
添加 Other Linker Flags
: 在Build Setting
搜索 Other Linker Flags
其后添加 -ObjC
2.1.0 及以上版本俺附,可打開(kāi) Debug 模式肥卡,打印出 log,方便調(diào)試事镣。開(kāi)啟方法:[Pingpp setDebugMode:YES]
;
注意:微信支付必需有微信客戶(hù)端才可以使用步鉴,百度錢(qián)包只能在真機(jī)使用
iOS9 之后info。plist 配置如圖所示:
URL scheme配置
info 文件配置
支付成功后的回調(diào)
在工程入口寫(xiě):
使用C的庫(kù)支持
工程中得支付代碼
//
// 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 @"正在獲取支付憑據(jù),請(qǐng)稍后..."
#define kNote @"提示"
#define kConfirm @"確定"
#define kErrorNet @"網(wǎng)絡(luò)錯(cuò)誤"
#define kResult @"支付結(jié)果:%@"
#define kPlaceHolder @"支付金額"
#define kMaxAmount 9999999
#define kUrlScheme @"testdemo" // 這個(gè)是你定義的 URL Scheme璃哟,支付寶氛琢、微信支付和測(cè)試模式需要。
#define kUrl @"http://218.244.151.190/demo/charge" // 你的服務(wù)端創(chuàng)建并返回 charge 的 URL 地址随闪,此地址僅供測(cè)試用阳似。
@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;
}
//充值數(shù)額
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>