#atronador
1 messages · Page 1 of 1 (latest)
There's some recommended preventative measures we recommend here: https://stripe.com/docs/disputes/prevention/card-testing
i.e. maybe introduce CAPTCHA before you redirect to the Checkout page
Yeah, but once at the Checkout page, they are out of my control....and they can refresh and re submit the Checkout Page as many times as they want...
Recaptch on my side is active, but this does nothing..
Is there a way maybe to expire the checkout page after X attempts o X seconds?
The sessions by default expire after 24 hours. You can shorten that to 30 minutes: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-expires_at
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok...that can help, but still...a lot of hits can go through in 30 minutes....any other ideas?
Is the checkout session bound to a payment intent? Is it possible to cancel the payment intent after, say, 10 failed attemps?
You'd expire the session manually, as opposed to cancel the PI: https://stripe.com/docs/api/checkout/sessions/expire
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.