gpt4 book ai didi

ios - 如何在 IOS 应用程序上使用 Braintree V Zero?

转载 作者:行者123 更新时间:2023-11-29 01:07:24 25 4
gpt4 key购买 nike

我正在编写一个具有支付功能的 IOS 应用程序。我决定使用 Braintree V Zero。

一开始,我使用了他们出色的 DropIn UI 功能,一切正常。但当付款发生时,Drop In UI 要求最终用户每次都输入他的信用卡或 Paypal 信息。

有谁知道如何通过 BrainTree V 零实现一种自动充电解决方案吗?

就像 Uber 的收费解决方案。

我想可能需要从应用端或服务端标记用户的信用卡信息?

    router.get('/token', function (req, res) {
console.log('Kevin in token be called %s', req.param('aCustomerId'));
var aCustomerId = req.param('aCustomerId');
console.log('Kevin %s', aCustomerId);
gateway.clientToken.generate({customerId: aCustomerId}, function (error, response) {
res.send(response.clientToken);
console.log(response.clientToken);
});
});

提前谢谢您!

最佳答案

全面披露:我为 Braintree 工作。

Braintree 临时遗嘱 display previously used payment methods for a customer ,如果您在 generating a client token 时传递 customer_id在你的服务器上。的下面是如何在 Node 中执行此操作的示例:

gateway.clientToken.generate({
customerId: aCustomerId
}, function (err, response) {
var clientToken = response.clientToken
});

使用付款方式后,它将保存在 drop-in 中,客户无需再次输入。创建交易时传递保存的支付方式的token:

gateway.transaction.sale({
amount: "10.00",
paymentMethodToken: theToken,
options: {
submitForSettlement: true
}
}, function (err, result) {
});

如有任何疑问,欢迎随时联系Braintree support .3133e

关于ios - 如何在 IOS 应用程序上使用 Braintree V Zero?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36180465/

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