#dannnnnnnnnnnnnnnnnnnnnn_unexpected
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1237341299288440882
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! that PaymentIntent example is not off_session.
I don't think you understand this correctly. The canonical way this works is
- create SetupIntent with
usage:"off_session". - confirm the SetupIntent
- some time(hours/days/months) later, create a PaymentIntent with the saved
payment_methodID - confirm the PaymentIntent with
off_session=trueto attempt to claim the "merchant initiated" exemption that the SetupIntent was being used for.
https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements
https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
In that example you posted, you're just doing a on-session payment on the saved card so it's treated as if the customer is present and can do 3D Secure.