return await stripe
.createPaymentMethod({
type: 'card',
card: cardElement,
billing_details: {
name: fullName,
email: email!,
phone: mobile!,
},
})
.then(({ paymentMethod, error }) => {
console.log(paymentMethod, error);
})
.catch(e => {
throw e;
});
我不能得到createPaymentMethod返回任何错误消息使用任何测试卡从条纹doco -不确定我是否做错了什么-任何帮助是赞赏
4000000000000002
4000000000000127
不期望createPaymentMethod
返回那些结构有效卡详细信息的测试卡拒绝。如果输入的数据无效,则可能会出现错误。例如,两位数的CVC将得到incomplete_cvc
,或者过去的截止日期将得到invalid_expiry_year_past
。
要获得拒绝错误,您需要使用创建的支付方法来确认支付意图或设置意图,或者尝试将支付方法附加到客户。