gpt4 book ai didi

ios - 布伦特里 iOS 集成

转载 作者:行者123 更新时间:2023-11-28 15:27:19 26 4
gpt4 key购买 nike

我正在尝试在 iOS 中实现支付。我在 https://developers.braintreepayments.com/start/hello-client/ios/v4 的帮助下尝试了您的沙盒测试

添加卡号“4111111111111111”后,我完全瞎了怎么办?现在,我没有任何服务器。

问题:

1)卡“4111111111111111”的有效期是多少?

2) 添加刷卡后,下一步应该如何完成交易?

3) 交易成功需要自己的服务器吗?

谢谢,

最佳答案

我在 Swift 中尝试过,它对我来说工作正常。我附上了下面的代码检查并让我知道:

    var braintree: Braintree?
braintree = Braintree(clientToken: "")



func userDidCancelPayment() {
self.dismiss(animated: true, completion: nil)
}

func drop(_ viewController: BTDropInViewController!, didSucceedWith paymentMethod: BTPaymentMethod!) {

print(paymentMethod.nonce)

// Send payment method nonce to your server

dismiss(animated: true, completion: nil)
let alert = UIAlertController(title: "Alert", message: "Send payment method nonce to your server Sucessfully", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)

}

func tappedMyPayButton()
{
let dropInViewController = braintree!.dropInViewController(with: self)
dropInViewController.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.cancel, target: self, action: #selector(PaymentVController.userDidCancelPayment))

let navigationController = UINavigationController(rootViewController: dropInViewController)
self.present(navigationController, animated: true, completion: nil)
}



func drop(inViewControllerDidCancel viewController: BTDropInViewController!) {
dismiss(animated: true, completion: nil)
}

签证:4242 4242 4242 4242万事达卡:5555 5555 5555 4444美国运通:3782 822463 10005重要说明:在测试模式下使用任何 future 的到期日期、卡上的姓名、CVC 和帐单 zip 。

关于ios - 布伦特里 iOS 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45073635/

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