Recaptcha v3 Problems
-
After switching to v3, multiple users are now reporting that they cannot submit the form. They get the yellow box with “Failed to send your message. Please try later or contact the administrator by another method.” Other users are able to send forms, and in testing on both desktop and mobile, I’ve had both success and failure — sometimes with the same or similar submission data.
1) I really wish the error message was more clear, or there was a reporting feature on the back end to let an admin see exactly what failed. For now, I’m assuming that RECAPTCHA v3 is the issue.
2) I use CF7DB to store entries in a table for troubleshooting. But that appears to only record successful submissions. So I have no way of knowing how many legit people have tried to submit the form and failed due to RECAPTCHA issues?
3) Google’s RECAPTCHA admin and docs reference an Actions option, which is set in the CF7 JS. Right now, all forms are set to “homepage”, which is confusing. In a future update of CF7, I’d love to see either the name or ID of the form there, so I can use the reporting in RECAPTCHA admin to see which forms are getting abused.
<script> grecaptcha.ready(function() { grecaptcha.execute('reCAPTCHA_site_key', {action: 'homepage'}); }); </script>
4) As of now, it’s all or nothing with RECAPTCHA. A way to bypass RECAPTCHA on a particular form could be useful for troubleshooting.
5) RECAPTCHA documentation says it scores from 0.0 (bad) to 1.0 (good), and apparently defaults to 0.5 as sendable. In the future, an option to tune that threshold (per form) might be helpful.
Any additional info on how this new system works would be much appreciated. For now, I think I may have to deactivate the keys and just absorb the junk as it comes in.
The page I need help with: [log in to see the link]
- The topic ‘Recaptcha v3 Problems’ is closed to new replies.