在Stripe Checkout
中,使用服务器集成,是否可以预加载客户保存的卡?
我有一位有以前购买历史的客户,我想让他在结帐时选择一个已保存的卡详细信息。
在CRM
中,我可以看到cus_EyGeAZaPVHwUVg
已存储了信用卡(目前正在测试中,信用卡号4242 ...),但是在新结帐时,即使收到电子邮件,我也没有看到该信用卡正确填充。
我在文档中没有看到任何选项,这是代码:
stripe.checkout.sessions.create({
payment_method_types: [paymentMethod],
line_items: [{
name: name,
description: description,
images: [imageUrl],
amount: amount,
currency: currency,
quantity: 1
}],
success_url: 'http://localhost:3000/success',
cancel_url: 'http://localhost:3000/cancel',
customer: 'cus_EyGeAZaPVHwUVg'
})