We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://www.google.com/recaptcha/enterprise.js?render=KEY will give error. Any workaround?
The text was updated successfully, but these errors were encountered:
Hello, what's the error?
Sorry, something went wrong.
If you have enterprise v2 key,
https://www.google.com/recaptcha/enterprise.js?render=KEY will give 400 bad request
To make it works with this library. i have to do some trick where you cannot put siteKey in nuxt.config.js
recaptcha: { siteKey: 'explicit', // put anything beside key version: 2, mode: 'enterprise' },
In component:
<recaptcha id="v2-normal"/>
await this.$recaptcha.init() this.widgetId = this.$recaptcha.render('v2-normal', { sitekey: process.env.GOOGLE_RECAPTCHA_KEY });
This will works with v2 enterprise.
No branches or pull requests
https://www.google.com/recaptcha/enterprise.js?render=KEY will give error. Any workaround?
The text was updated successfully, but these errors were encountered: