“Recaptcha v3 JS” Respostas de código

Recaptcha v3

<script src='https://www.google.com/recaptcha/api.js?render=CLAVE_SITIO_WEB'> 
</script>
<script>
    grecaptcha.ready(function() {
    grecaptcha.execute('CLAVE_SITIO_WEB', {action: 'formulario'})
    .then(function(token) {
    var recaptchaResponse = document.getElementById('recaptchaResponse');
    recaptchaResponse.value = token;
    });});
</script>
Zealous Zebra

Recaptcha v3 JS

<script src="https://www.google.com/recaptcha/api.js?render=your reCAPTCHA site key here"></script>
<script>
    grecaptcha.ready(function() {
    // do request for recaptcha token
    // response is promise with passed token
        grecaptcha.execute('your reCAPTCHA site key here', {action:'validate_captcha'})
                  .then(function(token) {
            // add token value to form
            document.getElementById('g-recaptcha-response').value = token;
        });
    });
</script>
Yoann A

Respostas semelhantes a “Recaptcha v3 JS”

Perguntas semelhantes a “Recaptcha v3 JS”

Mais respostas relacionadas para “Recaptcha v3 JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código