首页 > 解决方案 > Braintree DropIn + Apple Pay,不出现 Apple Pay 项目

问题描述

DropIn我成功地从 Braintree SDK调用视图。设置应显示BTDropInRequest三个项目:

  1. 贝宝
  2. 信用卡
  3. 苹果支付

但是由于某种原因,DropIn视图中只呈现了两个项目而不是三个:

  1. 贝宝
  2. 信用卡

我做错了什么?

准备:

这是一个请求的方法代码:

func showDropIn(clientTokenOrTokenizationKey: String) {

        BTUIKAppearance.darkTheme()
        let request = BTDropInRequest()    
        let canMakePayments = PKPaymentAuthorizationViewController.canMakePayments() && PKPaymentAuthorizationViewController.canMakePayments(usingNetworks: [.amex, .visa, .masterCard])
        request.applePayDisabled = !canMakePayments
        request.cardDisabled = false

        let dropIn = BTDropInController.init(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{

                switch result.paymentOptionType {
                case .applePay ,.payPal,.masterCard,.discover,.visa:

                    if let paymentMethod = result.paymentMethod {

                        controller.dismiss(animated: true, completion: nil)
                    } else {

                        controller.dismiss(animated: true, completion: {

                            self.braintreeClient = BTAPIClient(authorization: clientTokenOrTokenizationKey)

                            let paymentRequest = self.paymentRequest()

                            if let vc = PKPaymentAuthorizationViewController(paymentRequest: paymentRequest)
                                as PKPaymentAuthorizationViewController?
                            {
                                vc.delegate = self
                                self.present(vc, animated: true, completion: nil)
                            } else {
                                print("Error: Payment request is invalid.")
                            }

                        })
                    }

                default:
                    print("error")
                    controller.dismiss(animated: true, completion: nil)
                }
            }
        }

        self.present(dropIn!, animated: true, completion: nil)
    }

标签: iosswiftapplepaybraintree-sandbox

解决方案


根据 Braintree 的文档,您应该完成 Apple Pay 集成并且支持客户的设备和卡类型。

https://developers.braintreepayments.com/guides/drop-in/setup-and-integration/ios/v4#apple-pay

另外,此时请注意

如果使用带有客户 ID 的客户令牌,Apple Pay 卡将不会被自动保管。您可以使用付款方式 nonce 在您的服务器上创建付款方式。


推荐阅读