#dhaari
1 messages · Page 1 of 1 (latest)
Hi there, the card issuer and your radar rule determine if a transaction requires 3DS
ok. i understand. But does stripe payment intent api integration automatically prompt 3ds if in case it is required?
Do we need to implement any special event, code block to prompt for it"?
You should be using Stripe Js in order to handle 3ds automatically
You can try the quickstart
https://stripe.com/docs/payments/quickstart
Using a test card that requires 3DS:
https://stripe.com/docs/testing#regulatory-cards
we don't have to write any code? Does stripe automatically take care of the UI and action that prompt for OTP?
we used hosted page
integration
Yes
try the sample I shared with you
ok. we integrate stripe in .net c# environment
You are getting this error in your .Net code then, you need to debug your integration and see what is throwing that expection.
Here an example of implementing webhook endpoint using .Net:
https://github.com/stripe-samples/accept-a-payment/blob/main/custom-payment-flow/server/dotnet/Program.cs#L86
Welcome!