Last active
March 24, 2021 21:59
-
-
Save viniciussanchez/438969a6aaa27be611c7a587250b1719 to your computer and use it in GitHub Desktop.
reCAPTCHA v3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<title>reCaptcha</title> | |
<script src="https://www.google.com/recaptcha/api.js?render=PUBLIC KEY"></script> | |
</head> | |
<body> | |
<script> | |
grecaptcha.ready(function() { | |
grecaptcha.execute('PUBLIC KEY').then(function(token) { | |
console.log(token); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment