#vyne.david.osolkowski
1 messages · Page 1 of 1 (latest)
Hello 👋
There's no way to completely disable it but you can set redirect to if_required which only redirects if the PaymentMethod customer is using needs a redirect to confirm the payment
Is there documentation on which payment methods require a redirect?
Good question, it is usually the bank redirects
https://stripe.com/docs/payments/payment-methods/integration-options#support-bank-redirects
also some Buy now, Pay later options
such as afterpay/clearpay
we don't have a single doc listing these unfortunately.
Okay, it's important we avoid the redirect because we're not using cookie authentication, we can't provide a URL that will actually work and it will be extremely disruptive to the user
I see. So if you're using automatic_payment_methods then you'd want to check each active payment method option to make sure none of them needs redirect.
Same for payment_method_options
https://stripe.com/guides/payment-methods-guide#payment-methods-fact-sheets are the "customer-facing flow" diagrams here something we can rely on to know whether a method performs a redirect or not?