#GiovanniV - 3ds
1 messages · Page 1 of 1 (latest)
As far as I know there is no general timeout rule/limit for card authentication in this context. Individual customer bank flows might have their own limitations on completing the authentication steps, but from Stripe's perspective those can complete several minutes later as needed.
OK 1 more question : secret key never expires?. In that case if the timeout period is over, will customers be able to use the same client_secret later and complete the transaction?
The PI client secret is static, it doesn't change
Ok is there error code only related 3DS transaction processing.? if so can you point me to those
Yes those outcome details can be found on the charge object:
https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card-three_d_secure-result
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
1 more my friend and thank you for your help
this integration also support recurring donations wherein CVC is not passed in subsequent transactions. How do we indicate such transactions so that these are exempted from the SCA flow (as this is the card not present scenario)?
We have experienced transaction declines when connecting to other payment gateways like MPGS, Adyen when passing MOTO transactions. How do you handle this on your end to ensure less declines?
Stripe handles recurring SCA exemptions for you, but it's important to be aware that even then the bank might request authentication.
You can either allow Stripe to handle these via your billing settings,
You build your custom handling by listening for webhooks: https://stripe.com/docs/billing/subscriptions/overview#requiring-3ds-payment
OK thanks
How do you link previously authenticated transactions? One of the donation types that we support, i.e. monthly donations, makes a real-time request for the first transaction (assuming this is SCA authenticated) & then for subsequent monthly transactions, it’s the card not present scenario (MOTO). How do you understand these transactions are previously SCA authenticated or is this even required to be known?
Those reucrring payments don't sound like moto (that's specifically for collected over phone/mail) -- but this is tracked and managed by Stripe system after you collect the payment details
Ok you are the best thank you!