我正在使用braintree SDK进行付款。我已成功集成了付款方式和交易。但是现在,如果用户决定使用其他卡而不是旧卡,则我将不得不更新信用信息。
为此,我制作了一个Web服务,该服务获取持卡人姓名,抄送号,到期月份和年份以及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 Server PHP iOS上更新信用卡信息?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32133596/