您可以使用Braintree v.zero将信用卡详细信息存储在保险库中,而无需向其收费吗?

时间:2015-09-18 09:08:53

标签: braintree

使用旧的Braintree API,可以在保险库中存储信用卡详细信息以便以后收费(对于可变订阅模式)。是否可以使用v.zero API执行此操作?我查看了他们的文档并且不清楚。它提到它可以用Paypal帐户做到,但我不确定这是否包括信用卡(没有Paypal)。

1 个答案:

答案 0 :(得分:2)

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

是的!当客户在Drop-in中填写他们的信用卡信息时,它将由Braintree API处理。完成后,the client receives the payment method (i.e. credit card) nonce should be sent to your server。这个随机数可用于各种任务,包括simply storing in the vault,正如您尝试的那样:

{{1}}

步骤:

  1. 您的客户端嵌入了Drop-in
  2. 用户在Drop-in中填写数据
  3. 客户收到Nonce
  4. 客户端将Nonce发送到服务器
  5. 服务器使用nonce在Vault中创建付款方式
  6. 干杯!

相关问题