出现错误:您无法在创建PaymentMethod的过程中将PaymentMethod附加到客户。在定期付​​款意向条中

时间:2019-12-11 19:34:29

标签: stripe-payments

我正在研究定期付款的意图,当我尝试Charge the saved card later Server-side时,得到的响应是:

Array
(
    [error] => Array
        (
            [message] => You cannot attach a PaymentMethod to a Customer during PaymentMethod creation. Please instead create the PaymentMethod and then attach it using the attachment method of the PaymentMethods API.
            [type] => invalid_request_error
        )

)

为此,我使用了curl方法

curl https://api.stripe.com/v1/payment_methods \
  -u ********: \
  -d customer="{{CUSTOMER_ID}}" \
  -d type=card

有人可以帮助我解决此问题吗?我已经参考了此页面

https://stripe.com/docs/payments/save-and-reuse

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题..根据他们的docs,我们需要首先创建一种付款方式,然后将其附加到客户身上。但是,不知道为什么他们提供了客户领域