gpt4 book ai didi

swift - Braintree,跳过显示 Dropin 并直接选择 PayPal

转载 作者:太空宇宙 更新时间:2023-11-03 16:39:20 25 4
gpt4 key购买 nike

目前,当我尝试使用 paypal 付款时,它会首先显示此 DropIn:

enter image description here

但我的客户希望在不显示此 DropIn 的情况下直接访问 PayPal。

这是显示 dropIn 的代码:


fileprivate func showDropIn(clientTokenOrTokenizationKey: String) {
let request = BTDropInRequest()
request.cardDisabled = false
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 {
print(
"paymentOptionType: ", result.paymentOptionType,
"paymentMethod: ", result.paymentMethod as Any,
"paymentIcon: ", result.paymentIcon,
"paymentDescription: ", result.paymentDescription,
"paymentMethod: ", result.paymentMethod?.nonce as Any
)
self.postNonceToServer(paymentMethodNonce: result.paymentMethod!.nonce )
}
controller.dismiss(animated: true, completion: nil)
}
self.present(dropIn!, animated: true, completion: nil)
}

最佳答案

完全披露:我在 Braintree 工作。如果您有任何其他问题,请随时联系 support .

如果您只想显示 PayPal 按钮,那么在您的 Braintree 集成中制作一个独立的 PayPal 按钮会更容易,因为这会让您更好地控制您的 UI。

话虽如此,您可以使用 request.cardDisabled = true 禁用 Drop-in 中的信用卡选项。

关于swift - Braintree,跳过显示 Dropin 并直接选择 PayPal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58217500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com