#alper-yilmaz_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/1270015870416060489
π Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- alper-yilmaz_api, 3 days ago, 17 messages
Hi there π that's expected, you can't use test cards in livemode. You shouldn't use livemode for testing as it processes real payments, you should use testmode for that where you can use our test cards.
I have used my personal virtual card for testing livemode
How can we test livemode 3D?
payment_method = "pm_card_authenticationRequired" allows us to do 3D_Secure
How can I test 3D Secure in Livemode?
It took the money with passing 3D Secure
How can we make 3D Secure in Livemode?
If it works in testmode, you don't need to test in livemode. Why are you trying to do this in livemode? 3DS being triggered is typically determined by the issuer of the card you're using rather than being something you trigger.
You can try forcing 3DS using the approach shown here:
https://docs.stripe.com/payments/3d-secure/authentication-flow#manual-three-ds
but as mentioned in the note on that page, if the card doesn't support 3DS the payment proceeds normally
Stripe only requires your customer to perform authentication to complete the payment successfully if 3DS authentication is available for a card. If itβs not available for the given card or if an error occurred during the authentication process, the payment proceeds normally.
Additionally modifying the flow to try to force 3DS makes it not a great test anymore, as you're introducing something unique to the test flow that isn't there normally.
I see, so my card does not support 3D Secure probably; thank you very much for your support