Closed cipiasentini closed 3 years ago
I think I've figured it out, I've just included the recaptcha component inside the component I wanted to use. Now I'm getting a key validation error on page load. Even though I've made sure to have the correct public key setted up (and the private one on the server). error image config image
Examples for v2 and v3 are here https://github.com/nuxt-community/recaptcha-module/tree/master/example
const token = await this.$recaptcha.execute('login') what's the login that we are passing? if you look at the example v3 its not referring to anything
I think I've figured it out, I've just included the recaptcha component inside the component I wanted to use. Now I'm getting a key validation error on page load. Even though I've made sure to have the correct public key setted up (and the private one on the server). error image config image
did you solve this?
const token = await this.$recaptcha.execute('login') what's the login that we are passing?
“login” is just a name for the action the recaptcha is associated with. It can be anything. It will appear on the dashboard, more info here
Documentation is great for setting up, but how do I actually use the recaptcha on a given page? After seting it up, I'm intercepting the request params but there's no captcha params at all.