J'ai un problème étrange ici. Suite à la documentation, j'attache le PaymentMethod à un client existant, mais cela ne fonctionne pas. En gros, je:
Le code:
stripe.Customer.create(email=user.email, name=user.full_name)
stripe.PaymentIntent.create(amount=amount, currency="aud", customer=user.stripe_customer_id)
Stripe('{{ stripe_publishable_key }}').elements().create("card");
stripe.confirmCardPayment('{{ clientSecret }}', { payment_method: { card: card, billing_details: { // name: 'Jenny Rosen' }, } }).then(function (result) { if (result.error) { // Show error to your customer (e.g., insufficient funds) console.log(result.error.message); var displayError = document.getElementById('card-errors'); displayError.textContent = result.error.message; } else { // The payment has been processed! if (result.paymentIntent.status === 'succeeded') { // Show a success message to your customer // There's a risk of the customer closing the window before callback // execution. Set up a webhook or plugin to listen for the // payment_intent.succeeded event that handles any business critical // post-payment actions. $('#fake-submit').click(); } } });
stripe.PaymentMethod.attach(stripe.PaymentIntent.retrieve(intent_id).payment_method, customer=user.stripe_customer_id)
Request req_request_id: This PaymentMethod was previously used without being attached to a Customer or was detached from a Customer, and may not be used again.
C'est probablement la façon dont vous gérez l'étape 4. Voici ce que vous devez faire: https://stripe.com/docs/payments/save-after-payment