-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any idea how to implement invisible reCAPTCHA ? #133
Comments
I think it should just work depending on which API key you give it. Is that not the case? |
Can confirm, invisible reCAPTCHA keys produce a v2 visibile reCAPTCHA. |
Here's a dirty solution that worked for me, it seems like the submission/validation end works as normal, just had to customize my frontend instead of using the render method:
|
So I've been digging into this, and due to the way this needs to be implemented with the callbacks and everything - and also needs to interface with any code you write - it's gonna be difficult to pull off. @kilrizzy's solution above uses the Happy to hear implementation suggestions from you folks. |
@kilrizzy Thanks you for posting your code sample - its working a treat for me. Just a FYI for anyone quickly using the same code, if you rely on html validation, it looks like that will be skipped using this implementation. |
I ended up to a solution similar to @kilrizzy but the captcha code can be generated like this,
Since I was trying to submit the form using Ajax the JS code got more complicated. |
You can refer to this package: https://github.com/albertcht/invisible-recaptcha |
Thanks for the work done here. Awesome!
I just don't know how to implement the invisible reCAPTCHA. Any idea?
The text was updated successfully, but these errors were encountered: