#flamegecko-3ds-server-side
1 messages · Page 1 of 1 (latest)
Hi there 👋 sounds like you're at roughly this spot in the flow for setting up and reusing saved payment methods:
https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method:~:text=Check the code,Stripe API library
When the payment fails, do you see information in the last_payment_error field on the intent indicating that it failed due to authentication being required?
Yes I do see that information
code: "authentication_required"
so I should be able to send the clientsecret to the client to auth the payment via stripe.js ?
Yup, exactly
Send the client_secret to the frontend where you can make a request from to confirm the payment intent.
ok, thanks I will try, the payment method required status was making me think something else was wrong !