
invalid-input-secret when attempting to validate a token with the 1x0000000000000000000000000000000AA test secret and a token from the client. I've broken it down to be able to reproduce with a curl command:invalid-input-secret error message, when that's definitely not the problem, especially when using the test key that should make the token always pass?hey-you're-using-a-test-key-with-a-real-response for this instead?Dummy secret keys should never be used in production as it will accept any response token as valid.


invalid-input-secretinvalid-input-secret1x0000000000000000000000000000000AAcurl -X POST https://challenges.cloudflare.com/turnstile/v0/siteverify --data '{"secret":"1x0000000000000000000000000000000AA","response":"asdf"}' -H "Content-Type: application/json" -i
# succeeds
curl -X POST https://challenges.cloudflare.com/turnstile/v0/siteverify --data '{"secret":"1x0000000000000000000000000000000AA","response":"my-token-here"}' -H "Content-Type: application/json" -i
# fails with {"success":false,"error-codes":["invalid-input-secret"],"messages":[]}hey-you're-using-a-test-key-with-a-real-response