#susumu_api
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/1285502992446918666
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
It means you simply go back to the frontend and use Stripe SDK to confirm the PI
either stripejs confirmPayment or mobile SDKs' confirm
Thanks!
By the way, what happens after doing that? Is it going to be in a modal on the screen?
What happens after that modal operation?
Yes most likely. It's the 3DS required by the issuer bank
So the 3DS certification is done. Understood.
By the way, I'm planning to hit confirm payment intent API on the backend and use redirect_to_url of the response I receive there to do 3DS authentication, but I'm not sure if it's different from what I'm talking about here.
Do I need to implement each of these?
you can choose which approach to use. The default is use_stripe_sdk and calling the confirmPayment functions handles everything for you. If you want a more manual approach then https://docs.stripe.com/payments/3d-secure/authentication-flow#manual-redirect is an option.
So that's what it was about!
I understand it very well. Thanks for your thoughtful and quick response.