#GiovanniV-3DS
1 messages · Page 1 of 1 (latest)
Hello 👋
Juggling between a few threads at the moment
Give me a few to catch up 🙂 thanks
thank you!
Can you link me to the guide that you are using? I am not immediately amiliar with the 3DS fingerprint
Where is the fingerprint coming up? I don't see a test card related to it.
Can you show me what the response looks like with a fingerprint?
Can you show me a screenshot of that doc? For me Ctrl+F is not turning up any instances of "fingerprint" or even "finger" in that doc
is part of the payment intent card object handchake
yes 1 min
let me know is you can see that doc thanks!
Yep yep, I can see it. So basically you are using each of our test cards and are trying to figure out how to code to each of them being used?
yes
Which of those cards does your integration currently have trouble handling?
Confuse about When do we get 3DS fingerprint vs 3DS Redirect URL in response?
3DS fingerprint:
Need to understand the parameters shared as part of 3DS finger print response.
Need to understand more about ‘client secret’ and can we expect it in all the responses.
see the doc the first 3
If the next action is use_stripe_sdk, then you shouldn't work directly with the other details in the json. You will want to bring your user back to your website or app and then display the 3DS flow with one of our SDK's calls https://stripe.com/docs/payments/3d-secure#when-to-use-3d-secure
For example if you have a website, that would be handleCardAction
And you pass in the client_secret of the payment intent that you were confirming.
So in this case you created and confirmed the PaymentIntent in one call. Based on the status of requires_action and the next_action.type of use_stripe_sdk, the reccommended next step is to bring your user on-session and use the payment intent's client secret (pi_3KlTB2EVVoDvOY0k03gFZQ66_secret_txAJcck1qUtpkVHIYbfr15ZXE) with the appropriate SDK call. https://dashboard.stripe.com/test/logs/req_PkU6pQKIAjA9ny
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You only need the payment intent's client secret, the other details in the next_action hash are not relevant to your code.
That was a lot of info, is that helpful on how to move forward?
yes thank you! I am absorbing