#mitsu_api

1 messages ¡ Page 1 of 1 (latest)

willow hornetBOT
#

👋 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.

old portal
#

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.

Learn how to embed a custom Stripe payment form in your website or application. Build a checkout form with Elements to complete a payment using various payment methods.

willow hornetBOT
torpid grove
#

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?
harsh raptor
#

Hi there, so you want to explicitly trigger 3DS?

torpid grove
#

That's right

#

detailed instructions help me

harsh raptor
#

To be clear, you want your integration to always trigger 3DS? or you just to test 3DS in test mode?

torpid grove
#

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?

harsh raptor
torpid grove
#

I want to ask: if the card requires 3DS authentication to pay but my system does not check 3DS, can I still pay?

harsh raptor
#

What do you mean by "my system does not check 3DS" ?

torpid grove
#

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?

harsh raptor
#

Is you question more about how to handle 3DS when it's requested?

torpid grove
#

yes, i'm asking