#SergeyMays - 3D Secure

1 messages · Page 1 of 1 (latest)

eternal cedar
#

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

silk oriole
#

@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 ?

eternal cedar
#

Yes, you need to work with PaymentIntents and SetupIntents to be able to do 3DS auth with Stripe

#

So if you are currently using Charges, an upgrade will be needed to be able to go through the rest of the process and take these payments