作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个具有支付功能的 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/
我是一名优秀的程序员,十分优秀!