#Doug Ross
1 messages · Page 1 of 1 (latest)
So you control the 3ds redirect behavior in your code
By default, popups are used
If you want to redirect to a bank website to complete verification, then that's a different integration path in your code
Using a different test card won't change the popup vs redirect behavior
We're setting redirect: 'if_required' in the stripe.confirmPayment options. Does that mean it will never redirect?
So to manually redirect, you need to follow the guidance here: https://stripe.com/docs/payments/3d-secure?platform=web#manual-redirect
We'd actually prefer not redirect. I'm just trying to find out if when setting redirect: 'if_required' what cases there are that a redirect might occur, not just for 3DS. We're only using card payment method at this time.
So a redirect would never happen with card
Would have to be Ideal, Sofort, bancontact, etc
That redirect refers to those redirect based payment methods not a 3ds redirect
I just saw this as well:
If you don’t want to redirect for card payments, set redirect to if_required. This only redirects customers that check out with redirect-based payment methods.
OK, that's great. Thanks for confirming. Appreciate the help..
No problem
Yeah the card redirect they're referring to is just the redirection to your return url after payment
Yeah, I saw it will happen if it's set to redirect: 'always'. We'll use 'if_required' though and deal with redirects if we start to support other payment methods.
Thanks again..