我在这里关注Stripe的帐户:https://stripe.com/docs/saving-cards
尤其是保存客户信息的位置:
(async function() {
// Create a Customer:
const customer = await stripe.customers.create({
source: 'tok_mastercard',
email: 'paying.user@example.com',
});
// Charge the Customer instead of the card:
const charge = await stripe.charges.create({
amount: 1000,
currency: 'usd',
customer: customer.id,
});
// YOUR CODE: Save the customer ID and other info in a database for later.
})();
在开发中,我可以输入source: 'tok_mastercard'
并按预期运行,但是使用sk_live_...
时令牌将投入生产吗?据我所知,该文档尚不清楚。
答案 0 :(得分:1)
使用Stripe Elements或Stripe Checkout安全地收集卡详细信息时,令牌就是您在客户端创建的。这些使您可以交换具有唯一ID tok_12345
的Stripe Token的卡详细信息,然后将其发送到服务器以创建客户和费用。