We have integrated Turnstile widget into our React Native app using web-view: https://github.com/react-native-webview/react-native-webview
. Everything was working fine until May 9. We started to notice ‘timeout-or-duplicate’ errors in our logs. Most of the token verifications are passing, but there is a number of failed verifications.
The thing is that we refresh the token prior making any requests, which means we always pass a brand new token to the verification endpoint. Only after Turnstile widget obtains a new token we make our request. We don’t store that token anywhere, so it could not accidentally be passed to the verification endpoint.
I know Turnstile is still in beta, but it was working fine before. Is there any way how we can fix this error? Or maybe there is so called “debug mode” which may help us to debug and troubleshoot that?
just fyi, we didn’t release any changes regarding Turnstile on May 9.