iosアプリケーションにtechprocess payment gatewayを統合する必要があります。この支払いゲートウェイのフレームワークを親切に教えてください。どのように客観的なCでPaynimoの支払いゲートウェイを統合するには?
リンク:Techprocess
iosアプリケーションにtechprocess payment gatewayを統合する必要があります。この支払いゲートウェイのフレームワークを親切に教えてください。どのように客観的なCでPaynimoの支払いゲートウェイを統合するには?
リンク:Techprocess
1)あなたはTechprocessからUTAとライブPaynimo SDKを入手する必要があります。
プロジェクト名:MerchantSampleApp
インポートヘッダー:輸入
ブランクアプリケーションの作成方法:
設定し、Windowsの背景色。
2)PayminoStyle.hと.mファイルをプロジェクトに追加します。
3)フレームワークの統合:
標的 - > Libraries-とPhases->リンクのバイナリをビルドする>をクリックします(+) - >追加 その他 - > Paynimolib.framework
するとフレームワーク他のライブラリの追加プロジェクト
に追加
MessageUI.framework
MobileCoreServices.framework
SystemConfiguration.framework
CFNetwork.framework
Security.framework
Foundation.framework
CoreGraphics.framework
UIKit.framework
AVFoundation.framework
AudioToolbox.framework
CoreMedia。フレームワーク
MobileCoreServices.framework
ターゲット - >設定を構築するには - 、」 - LCを++」
4)バンドルの統合: •標的 - > Phases-を構築する>コピーバンドルのリソース - >をクリックします(+) - >追加その他 - > Paynimolib.bundle
5)実施CheckoutViewController
における機能
は、ボタンを追加し、
- (IBAction)payBtnTap:(id)sender {
Checkout *checkoutObj = [Checkout new];
//Merchant
[checkoutObj setMerchantIdentifier:@"MerchantIdentifier"];//you need to get from techprocess
[checkoutObj setPaymentTransactionIdentifier:@"TXN0"];
[checkoutObj setPaymentTransactionReference:@"ORD0001"];
[checkoutObj setPaymentTransactionType:@"SALE"];
[checkoutObj setPaymentTransactionSubType:@"DEBIT"];
[checkoutObj setPaymentTransactionCurrency:@"INR"];
[checkoutObj setPaymentTransactionAmount:@"1.0"];
[checkoutObj setPaymentTransactionDateTime:@"24-11-2016"];
//Consumer
[checkoutObj setConsumerIdentifier:@"appusername"];
[checkoutObj setConsumerEmailID:@"[email protected]"];
[checkoutObj setConsumerMobileNumber:@"mobilenumber"];
[checkoutObj setConsumerAccountNumber:@""];
[checkoutObj addCartItem:@"Top" amount:@"1.0" SurchargeOrDiscount:@"0.0" SKU:@"com.companyname.yourappname" Description:@"" ProviderID:@"yourcompanyidfrom techprocess" Reference:@"Test" CommisionAmt:@""];
PMPaymentOptionView *payView = [[PMPaymentOptionView alloc] initWithPublicKey:@"MerchantIdentifier" checkout:checkoutObj paymentType:@"Netbanking" success:^(id resObject) {
NSLog(@"%@",resObject);
} failure:^(NSDictionary *failDict) {
NSLog(@"%@",failDict);
} cancel:^{
}];
[self.navigationController presentViewController:payView animated:YES completion:nil];
}
が、これが参考になっことを願っています。 UTAとLive PaynimoSDKのドキュメントも参照してください。 これはネットバンキングプロセスです。
私はpaynimo支払い統合をお願いします。アプリ購入ではない –
よう:https://developer.paypal.com/docs/integration/mobile/ios-integration-guide/? –
それはpaypalの統合ではありません。 iOSとのペイント統合。 –