2
A
答えて
2
チェクこのPayPalデリゲートメソッド私のおかげで勤務
func payPalPaymentViewController(_ paymentViewController: PayPalPaymentViewController, didComplete completedPayment: PayPalPayment)
{
print("PayPal Payment Success !")
paymentViewController.dismiss(animated: true, completion: {() -> Void in
// send completed confirmaion to your server
print("Here is your proof of payment:\n\n\(completedPayment.confirmation)\n\nSend this to your server for confirmation and fulfillment.")
let dict = completedPayment.confirmation
print("dict data is ====%@", dict)
let paymentResultDic = completedPayment.confirmation as NSDictionary
let dicResponse: AnyObject? = paymentResultDic.object(forKey: "response") as AnyObject?
let paycreatetime:String = dicResponse!["create_time"] as! String
let payauid:String = dicResponse!["id"] as! String
let paystate:String = dicResponse!["state"] as! String
let payintent:String = dicResponse!["intent"] as! String
print("id is --->%@",payauid)
print("created time ---%@",paycreatetime)
print("paystate is ----->%@",paystate)
print("payintent is ----->%@",payintent)
})
}
関連する問題
- 1. IOSのPayPal統合
- 2. iOS:段階的なPayPal braintreeの統合
- 3. PayPalとPHPとの統合
- 4. PayPalとイオンハイブリッドモバイルアプリケーションとの統合
- 5. PayPal ExpressチェックアウトとPayPal REST APIの統合
- 6. Paypalの統合
- 7. MagentoのとPayPalの統合
- 8. ASP.NETとPayPalの統合
- 9. PayPalエクスプレスチェックアウトとウェブサイトの統合
- 10. PaypalとJavaの統合
- 11. PaypalとPhalcon 3の統合
- 12. iOS 8.0でのOneSignalの統合Swift
- 13. Paypalサンドボックス統合
- 14. iOS Swift 2 Twitterログインの統合
- 15. Recurly Paypalの統合
- 16. Paypalの統合 - IPN
- 17. Paypalサブスクリプションの統合
- 18. Java PayPalの統合
- 19. Braintree PaypalとiOSを統合するには?
- 20. PayPalと既存のウェブサイトとの統合
- 21. PaypalとIonicフレームワークとの統合
- 22. PayPalとインド通貨のチェックアウトの統合
- 23. ウェブサイトのないPayPalとの統合
- 24. エクスプレスチェックアウトとオンサイトのpaypalの統合
- 25. Magento 2.1とのPaypalの統合
- 26. asp.netでのPayPalの統合
- 27. PayPalのIpadへの統合
- 28. PayPalのウェブサイトへの統合
- 29. PayPal寄付の統合とlaravel 5.1
- 30. Paypal PHP sdkとCakephp 3.xの統合
確認のみ "completedPayment.confirmation" を得ることができます。 –