#Praveen
1 messages · Page 1 of 1 (latest)
i checked it
it says change RequestThreeDSecure to any
but i did not received any redirection url to move to bank page
what does that mean? what exact API call did you make, what did you recieve in response, what did you expect to see instead?
I wouldn't recommend not using Stripe.js but to do so, you would receive a next_action when creating a Payment Intent server-side. You should read it.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
this url is reddiecting to our websie with some params
yes. What's the question exactly?
I see you created a PaymentIntent and got that link. You visited it once, which would have started the 3D Secure process. When it's finished, the customer is redirected to the return_url you specificed. If you visit the link again for some reason, we'll redirect to your return_url imemdiately. What's the problem exactly?
I need api for checking if the payment went throuh success fully
for checking payment status
I need to check payment status at Realtime immediately after redirection to our return url.
then you can add some code to retrieve the PaymentIntent object from the API and check the status from your backend at that point, I would say
I can keep payment intent . Should i call confirm function again to get status
no
you just do https://stripe.com/docs/api/payment_intents/retrieve and look at the status in the response.