作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试从 Braintree 获取随机数。我没有找到任何文档 Braintree 提供了如何在以下文档中从 Braintree SDK 获取随机数。
https://developers.braintreepayments.com/start/hello-client/ios/v4
请告诉我如何从 Braintree iOs SDK 获取随机数
最佳答案
您可以使用 drop in 方法获取付款随机数 让 nonce = result.paymentMethod!.nonce
例子:-
func showDropIn(clientTokenOrTokenizationKey: String) {
let request = BTDropInRequest()
let dropIn = BTDropInController(authorization: clientTokenOrTokenizationKey, request: request)
{ (controller, result, error) in
if (error != nil) {
print("ERROR")
} else if (result?.isCancelled == true) {
print("CANCELLED")
} else if let result = result {
let nonce = result.paymentMethod!.nonce
print( nonce)
}
controller.dismiss(animated: true, completion: nil)
}
self.present(dropIn!, animated: true, completion: nil)
}
关于ios - 如何从 Braintree iOs SDK 获取 nonce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35199248/
我是一名优秀的程序员,十分优秀!