Questions tagged [recaptcha-v3]

reCaptcha v3 is the previous version for Google reCaptcha. reCaptcha v3 returns a score for each request without user friction. The score is based on interactions with a site and enables the user to take an appropriate action for a site.

There are multiple reCAPTCHA versions, as seen in this official documentation.

This tag is used exclusively for the previous version: "reCAPTCHA V3"

The current reCAPTCHA version is "ReCAPTCHA Enterprise". ReCAPTCHA Enterprise is a Google Cloud Platform product, while the previous versions are not. If you have a question about the Enterprise version, use the tag.

If you're not sure which version are you using, you can use the generic tag.

381 questions
4
votes
0 answers

How to handle rejections from reCaptcha v3 execute?

The reCaptcha v3 documentation gives good examples on how to retrieve a token and make use of it - grecaptcha.ready(function() { grecaptcha.execute('_reCAPTCHA_site_key_', {action: 'homepage'}).then(function(token) { ... }); }); What…
David
  • 1,007
  • 7
  • 14
4
votes
0 answers

Is there an Invisible reCaptcha for iOS Application? (don’t require user clicks)

Google offers a great way to protects your native Android app from malicious traffic: SafetyNet reCAPTCHA API With that you can implement an invisible captcha which 0 extra clicks. Check the following short video demo implementation:…
nanz
  • 121
  • 1
  • 6
4
votes
0 answers

firebase.auth.RecaptchaVerifier with reCaptcha v3

I am trying to implement reCaptcha v3 into my site and am currently using React.js and Firebase for Authentication. I was using reCaptcha (v2?) before with Firebase's built in auth method firebase.auth.RecaptchaVerifier following the same method as…
4
votes
2 answers

wait for result before proceeding

I'm using Google's reCaptcha V3 as part of my Angular(7) project. I would like to wait for the Token's response before proceeding to the rest of the code and before checking whether the Token is validated or not. declare var grecaptcha: any; …
JumpIntoTheWater
  • 1,306
  • 2
  • 19
  • 46
4
votes
0 answers

Recaptcha V3 Always returning 0.9 score, when running through python script

I have implemented recaptcha v3 on form submit, which works fine on normal scenario as I'm getting 0.9 score. But when I try to run it from a python script using selenium, it still gives me 0.9 score, which is incorrect. I tried recaptcha v2, for…
4
votes
1 answer

Whitelist in google reCAPTCHA v3

Is there any way to whitelist ip's from google reCAPTCHA v3 that google didn't consider those ip's as bot. is it possible?
Atanu Samanta
  • 145
  • 2
  • 11
4
votes
0 answers

Is it possible to remove a 'bot' from the 'bot-list' in Recaptcha v3?

I've made a website with a contact form. The contact form works with Recaptcha version 3 (v3). Everything is working, but is it possible to remove an ip-address from the list that is marked as a bot? When I was testing my website, I always had a…
4
votes
2 answers

Testing the new Google reCAPTCHA v3

What are the best ways to test failures? I know of the UserAgent change trick where setting it to "Googlebot" for example, will fail the test. However are there other ways to test this? I can test how my application will behave when the score is…
crmpicco
  • 16,605
  • 26
  • 134
  • 210
4
votes
2 answers

Google Recaptcha V3 on a GET request

The Google Invisible Recaptcha docs say that their captcha v3 can be used in two ways: On form submissions On page loads Page loads are essentially GET HTTP requests. I'm in need to validate a user using recaptcha v3 on a particular GET request.…
nvkrj
  • 1,002
  • 1
  • 7
  • 17
4
votes
2 answers

How do I hide Google reCAPTCHA v3 from my site?

I just upgraded from v2 and css is no longer a valid option for hiding the recaptcha badge from my UI. Can this be done with JavaScript?
NatD
  • 43
  • 1
  • 4
3
votes
0 answers

Error: Missing required parameters: sitekey in firebase recaptcha in multifactor authentication

I'm trying to implementing a MFA system in firebase and I'm constantly running into the issue "Missing required parameters: sitekey". I have entered the sitekey in my firebase config.js file. As per the documentation provided by the firebase for the…
3
votes
1 answer

"browser-error" in google reCaptcha V3 (invisible)

I am using google reCaptcha v3 (invisible), but I am getting some response payload with: { "success": false,   "error-codes": [     "browser-error"   ] } I've googled but haven't found any information about "browser-error" from 7900 reCaptcha v3…
3
votes
2 answers

Google Recaptcha Giving INTERNAL_ERROR on Android & IOS

I'm using Google recaptcha api to implement captcha on login action in my app. But every time I try to initialise the recaptcha api to get the recaptcha tasks client then It's giving either INTERNAL_ERROR or Timed out waiting for 10000 ms I'm…
3
votes
0 answers

How to free myself from Captcha v3?

I implemented captcha v3 to my website, and to see if it was working fine, I filled my contact form multiple times the way a bot would do it. I can no longer use it anymore, so I concluded that it is working, but the bad news, is that I don't know…
Aghilesdza
  • 93
  • 5
3
votes
0 answers

How to used the firebase appChek with recapatchaV3 (ReCaptchaV3Provider) in react js

I try to use the firebase's appCheck in my create-react-app with Recaptcha V3 but I have an error which I dont understand : err : Uncaught (in promise) Error: reCAPTCHA placeholder element must be an element or id My code in Firebase-config.js…