gpt4 book ai didi

php - 如何在 braintree 服务器 php iOS 上更新信用卡信息?

转载 作者:行者123 更新时间:2023-11-29 12:15:28 25 4
gpt4 key购买 nike

我正在使用 braintree SDK 进行支付。我已经成功地整合了支付方式和交易。但是现在如果用户决定使用他们的另一张卡而不是旧卡,我将无法更新信用信息。

为了实现这一点,我制作了一个网络服务,可以获取持卡人姓名、抄送号码、到期月份和年份以及 cvv。

最佳答案

您可以通过提交所有详细信息来创建信用卡:

result = Braintree_CreditCard::create([
'cardholder_name' => 'John Doe',
'cvv' => '123',
'expiration_date' => '12/2019,
'number' => '4111111111111111',
'options' => [
'verify_card' => True
]
])
# use this credit card token(5mk3f2).
print(result.credit_card.token)

We this credit card token to update the credit card by as follows:

$result = Braintree_PaymentMethod::update(
'5mk3f2',
[
'cardholder_name' => 'Doe Jhon',
'cvv' => 'XXX',
'expiration_date' => '8/2020,
'number' => '4111111111111118',
'billingAddress' => [
'streetAddress' => '100 Maple Lane',
'options' => [
'updateExisting' => true
]
]
]);

关于php - 如何在 braintree 服务器 php iOS 上更新信用卡信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32133596/

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