我可以使用load-stripe
在前端reactjs上生成令牌。
现在我需要在后端nodejs上做同样的事情。用户将accountNumber
cvv
和其他信息传递给后端,然后如何使用令牌创建令牌?
任何帮助将不胜感激 谢谢!!!
答案 0 :(得分:1)
我不建议使用load-stripe
npm模块
3年了。
有一个很好的示例,在后端使用条纹API,完全没有任何依赖性。
答案 1 :(得分:1)
var stripe = require("stripe")("sk_test_4eC39HqLyjWDarjtT1zdp7dc");
stripe.tokens.create({
card: {
"number": '4242424242424242',
"exp_month": 12,
"exp_year": 2019,
"cvc": '123'
}
}, function(err, token) {
// asynchronously called
});
有关更多信息:Stripe Documentation