Hi y'all,
I'm attempting to implement Google ReCAPTCHA v3 on our forms due to multiple spam issues. We've created the Google secret and site keys and followed along with @SanfordWhiteman's notes for v2 here (adapted for the v3 fields) and his sample code.
We've implemented tokens for the site key and secret key and created JavaScript to create the fingerprint for Google ReCaptcha. A webhook has been created to leverage the fingerprint and secret key. (see screenshot below)
In testing the webhook, on form submission, the fingerprint and secret are successfully populated.
However, we are receiving an error from ReCAPTCHA stating "List(invalid-input-response)"
We haven't had any luck in finding an answer on Google. Any ideas here? Is it an issue with the webhook? With the ReCAPTCHA implementation? Any help would be GREATLY appreciated.
TL;DR: Error on Google ReCAPTCHA submission of "List(invalid-input-response)". How to fix?
Solved! Go to Solution.
..followed along with @SanfordWhiteman's notes for v2 here (adapted for the v3 fields) and his sample code.
Those are actually Greg's notes (I don't do it that way!) but that is the JS code I use for v3.
TL;DR: Error on Google ReCAPTCHA submission of "List(invalid-input-response)".
There are 2 things happening here:
..followed along with @SanfordWhiteman's notes for v2 here (adapted for the v3 fields) and his sample code.
Those are actually Greg's notes (I don't do it that way!) but that is the JS code I use for v3.
TL;DR: Error on Google ReCAPTCHA submission of "List(invalid-input-response)".
There are 2 things happening here:
Awesome. Thanks for the response @SanfordWhiteman! Changing Fingerprint to TextArea did the trick! Tests are submitting perfectly.
Now to figure out the score check...