#B33fb0n3
1 messages · Page 1 of 1 (latest)
The user's bank requested that they complete 3DS authentication and it looks like the user failed that authentication
oh ok. Where could I see this next time?
As in in your client side or server side code? Or somewhere else?
From the serverside. Via dashboard for example 🙂
You will get a payment_intent.payment_failed event to your webhook handler about these auth failures.
https://dashboard.stripe.com/events/evt_3MftrVD4LgnRPd5t2fe6jDCA
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
ah got it. Is anywhere inside the data a link that the customer can complete the checkout, with the already provided data? Like a stripe checkout session https://stripe.com/docs/checkout/quickstart?locale=de-DE
I'm not quite sure what you mean there. Can you send the specific snippet of code that you are talking about here?
yeah, sure. For example the response from this request: req_k800ufwUpbhO4y
I found for example this one:
"url": "https://hooks.stripe.com/redirect/authenticate/src_1MfttiD4LgnRPd5tPXQNTJ7A?client_secret=src_client_secret_<some_secret>"
},
Hi there
apologies for the delay here
Server got really busy
I found for example this one:
"url": "https://hooks.stripe.com/redirect/authenticate/src_1MfttiD4LgnRPd5tPXQNTJ7A?client_secret=src_client_secret_<some_secret>"
},
that URL is used by the client-side SDK, you shouldn't really be calling that manually
Ok, is there any link, where the user can complete it? The payment intent already exists
There's no prebuilt UI for this. You can build one to bring your customers back on session.
You can use the PaymentIntent clientSecret to render Elements and complete the payment
Alright, thanks For the help