#SergeyMays - 3D Secure
1 messages · Page 1 of 1 (latest)
In that case, you need to bring your user back on session so they can perform the 3DS authentication again https://stripe.com/docs/payments/3d-secure#when-to-use-3d-secure
Also make sure to specify that these payments are off session if the user is not present when they are being charged. We let the bank know the user is off session and some banks ask for 3DS auth less if they know the user is not around
@eternal cedar
Thanks for the answer.
For this, the following scenario is sufficient:
stripe.charges.create({ amount: 1000, currency: 'usd', source: 'card_id', capture: true, customer: 'cus_id', });
or is it necessary to work with paymentIntents or setupIntents ?