Stripe의 subscriptions에서 `This customer has no attached payment source or default payment method.` 오류가 발생하여 결제 처리가 불가능합니다.
배경
const result = await stripe.subscriptions.create({
customer: customerId,
items: [
{
price: priceId,
},
],
application_fee_percent: 10,
transfer_data: {
destination: connectAccountId,
},
}, {
idempotencyKey: idempotencyKey,
});
This customer has no attached payment source or default payment method.
와의 에러가 나서 실행할 수 없다. 대응
const result = await stripe.subscriptions.create({
customer: customerId,
items: [
{
price: priceId,
},
],
// consumerのpayment_methodを取得してきて、明示的に指定した。
default_payment_method: paymentMethodList.data[0].id,
application_fee_percent: 10,
transfer_data: {
destination: connectAccountId,
},
}, {
idempotencyKey: idempotencyKey,
});
비고
default_payment_method
optional
ID of the default payment method for the subscription. It must belong to the customer associated with the subscription. This takes precedence over default_source. If neither are set, invoices will use the customer’s invoice_settings.default_payment_method or default
API 문서에,
customer
의 invoice_settings
의 default_payment_method
로 설정해도 마찬가지일 수 있다고 기재가 있으므로 그쪽을 설정하는 것이 better일지도 모른다.
Reference
이 문제에 관하여(Stripe의 subscriptions에서 `This customer has no attached payment source or default payment method.` 오류가 발생하여 결제 처리가 불가능합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/emono/items/5138b230ddb43be055dd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)