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
5
votes
1 answer

How to show reCaptcha v3 just in register page?

I'm building an app with Angular 12 and Ionic. I have protected the register form with the ng-recaptcha package (https://github.com/DethAriel/ng-recaptcha) which uses the Google reCaptcha v3 (https://developers.google.com/recaptcha/docs/v3). My…
5
votes
1 answer

Error: 7 PERMISSION_DENIED: Permission 'recaptchaenterprise.assessments.create' denied on resource

I keep getting this error, I am trying to implement google reCaptcha v3, I gave myself all possible permissions on my service account but nothing seems to work. I don't even understand the error. these are some lines of the error from the…
Bassel Turky
  • 371
  • 7
  • 15
5
votes
0 answers

Recaptcha timeouts on some browsers

Using react-google-recaptcha-v3 executing await executeRecaptcha("contact"); timeouts on some browsers. I am not sure if the root cause is within the repo (issue) or upstream, as it only fails in some browser configurations. Any help is highly…
ohlr
  • 1,839
  • 1
  • 13
  • 29
5
votes
0 answers

Recaptcha V3 : ERROR for site owner: Invalid key type

We have been using recaptcha V3 for ours sites since last 6 months. But since last week we are facing ERROR for site owner: Invalid key type. I double checked and confirmed that the keytype is V3 in google recaptcha console.I created new V3 keys and…
gijo
  • 51
  • 2
5
votes
1 answer

What do I do with low Scores in reCAPTCHA v3?

I have set up reCAPTCHA v3 on my ASP.NET MVC project. Everything is working fine and is passing back data properly. So the code below depends on another dll I have, but basically, the response is returned in the form of an object that shows…
HumanHickory
  • 464
  • 1
  • 6
  • 19
5
votes
1 answer

Blazor recaptcha validation attribute IHttpContextAccessor is always null

I thought I would have a go at using Blazor server-side, and so far I've managed to overcome most headaches one way or another and enjoyed it, until now. I'm trying to write a validator for Google Recaptcha v3, which requires a users IP address.…
Mark Perry
  • 2,908
  • 3
  • 18
  • 27
5
votes
0 answers

recaptcha V3: server-side in Java

I cannot find any code about server-side for recaptcha v3 in java. I already added the code in my jsp file (client-side) (as you see below) but how to process it in server-side? Actually, I need server-side code in java for recaptcha v3.…
Sami
  • 109
  • 2
  • 6
5
votes
2 answers

Google reCAPCTHA v3 should go in every page or not?

I'm migrating from Google reCAPTCHA v2 to v3. As they are quite different, I have a question. I used to place my reCAPTCHA v2 only inside web pages where a form exists, to make users click and avoid bots. That's understood, ok, but with reCAPTCHA…
Ommadawn
  • 2,450
  • 3
  • 24
  • 48
5
votes
1 answer

Does Flask-WTF support reCAPTCHA v3?

I have been trying to integrate Google reCAPTCHA v3 to a website through the RecaptchaField provided by Flask-WTF. I know that reCAPTCHA v3 is newly introduced by Google and I am wondering if Flask-WTF support it or not? To clarify : recaptcha v2 is…
disooqi
  • 617
  • 10
  • 19
5
votes
0 answers

Google reCaptcha v3 loads v2 API js

We are implementing Google reCaptcha v3 and all the setup is done as described in the official documentation However, when the page loads, I see in browser network that recaptcha__[locale]>.js loads: 1) multiple times (probably 1st time when the…
kosmeln
  • 247
  • 2
  • 10
4
votes
0 answers

How to generate recaptcha token in integration test in java?

I am trying to write integration test (Junit) in java to test recaptcha v3. But I cannot hardcode recaptcha token. I tried referring to https://developers.google.com/recaptcha/docs/faq#id-like-to-run-automated-tests-with-recaptcha.-what-should-i-do…
4
votes
3 answers

How to get firebase App Check working with cloud firestore in a web app

I try to get App Check working in my vue.js pwa. Using the latest firebase sdk and by following steps here https://firebase.google.com/docs/app-check/web/recaptcha-provider My api key (https://console.cloud.google.com/apis/credentials/key..) is not…
4
votes
1 answer

React captcha v3 is slowing my page significantly

I'm using react-google-recaptcha-v3 in my React project. I have used defer prop attribute but it is still slow. How can I improve the speed with the use of this plugin? It only affects significantly on mobile view. Is there a way to not load the…
Samuel L.
  • 61
  • 5
4
votes
1 answer

Google reCaptcha v3 vs google reCaptcha Enterprise

does anyone know how many API calls can i make for the google reCaptcha v3. And What are the main difference in reCaptcha v3 and reCaptcha Enterprise.
Alex
  • 61
  • 1
  • 3
4
votes
1 answer

Using Google ReCaptcha v3 in Next.js

Using React ^16.13.1 & Next ^9.4.4 Attempting to get react-google-recaptcha-v3 working within my app. It appears to be hanging at const result = await executeRecaptcha("homepage") in pages/index.js. console.log(process.env.GOOGLE_RECAPTCHA_SITE_KEY)…
David S
  • 325
  • 4
  • 15
1 2
3
25 26