gpt4 book ai didi

javascript - Braintree 支付方式在 Node.js 中创建问题

转载 作者:行者123 更新时间:2023-12-02 15:22:59 25 4
gpt4 key购买 nike

我正在尝试创建 Braintree 付款方式。

但是我需要存储CVV,expirationDate but official document显示这两个已弃用的页面。

现在我正在使用代码来创建 Braintree 付款方式。

示例:

gateway.paymentMethod.create({
customerId: req.session.passport.user.braintree_customer_id,
paymentMethodNonce: "fake-valid-mastercard-nonce",
cardholder_name: req.session.passport.user.first_name+" "+req.session.passport.user.last_name,
billingAddress: {
streetAddress: req.body.address1,
locality:req.body.city,
region:req.body.state,
postalCode:req.body.zip
},

options: {
verifyCard: true,
}
}, function (err, result) {
if(err){console.log(err);return false;}
callback(false,result)
});

但我需要存储 CC、CVV、到期日期、持卡人姓名等。

最佳答案

全面披露:我在 Braintree 工作。如果您还有任何疑问,请随时联系contact support .

您正在使用付款方式随机数发送信用卡详细信息,其中包括卡号、CVV 和到期详细信息。持卡人姓名并未被弃用,因此您可以将其与随机数分开提交。

注意:CVV 用于初始交易,但不存储在保险库中。事实上,没有办法将 CVV 存储在保险库中。

关于javascript - Braintree 支付方式在 Node.js 中创建问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33891530/

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