#mitsu_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/1272757627046330369
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
When to use 3D Secure authentication ?
When the issuer and regulation requires it.
Which countries have 3d secure cards?
Cards from every country can have 3DS cards. It's up to the issuing bank whether 3DS is needed on a specific payment.
How to get OTP
Card issuing bank will send the authentication. Authentication method varies and OTP is just one of them.
Is there a php code guide?
You can follow this integration guide to accept payment: https://docs.stripe.com/payments/quickstart?lang=php&client=html
Stripe handle 3DS automatically when needed.
I have not seen any code related to 3DS
$stripe->paymentIntents->create
- call api success, then show 3ds authentication screen like?
- enter authentication code, then call which api next?
Hi there, so you want to explicitly trigger 3DS?
To be clear, you want your integration to always trigger 3DS? or you just to test 3DS in test mode?
I also don't understand if my system requires 3ds or not
I want to ask: if the card requires 3DS authentication to pay but my system does not check 3DS, can I still pay?
https://stripe.com/resources/more/3d-secure-101 this doc will help you understand 3ds
I want to ask: if the card requires 3DS authentication to pay but my system does not check 3DS, can I still pay?
What do you mean by "my system does not check 3DS" ?
i.e. i call api paymentIntents->create
with the above options
=> when the user enters the card and there is a request for authentication, will it be successful?
for example i enter card number 4000002500003155
then paymentintent will fail
=> then when deploying in real environment will also fail right?
Is you question more about how to handle 3DS when it's requested?
yes, i'm asking