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
11
votes
3 answers

How to emulate a robot behaviour when using Google Recaptcha V3

I have implemented google recaptcha v3 in my application and i'm pretty confident that it is working (when testing it I get the response I'm expecting). However I am but a simple human and I would like to test my code by emulating a robot…
NicolasR
  • 874
  • 2
  • 11
  • 18
8
votes
1 answer

How to solve Browser Error when verifying with ReCaptcha?

From some time I am receiving an error code browser-error during ReCaptcha's verification on a Web App (Node back-end, HTML / JS front-end). This thread here explains that it's an error which comes from not having a domain added in the whitelist for…
Chique
  • 735
  • 3
  • 15
8
votes
0 answers

'content_security_policy.extension pages': Insecure CSP value "https://google.com" in directive 'script-src'

I am trying to add content security policy to my V3 manifest file for applying reCaptcha v3 to my chrome extension but I keep getting the following error 'content_security_policy.extension_pages': Insecure CSP value "https://google.com" in…
8
votes
3 answers

How to use Recaptcha v3 with VueJS using uve-recaptcha-v3 when I get a vue_1.ref is not a function error?

I am using vue-recaptcha-v3 in a VueJS app but am immediately getting an error. My main.js looks like this: import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import Buefy from 'buefy' import…
Johnny John Boy
  • 3,009
  • 5
  • 26
  • 50
8
votes
1 answer

recaptcha v3 front end .execute() returning strange result with )]}' ["rresp","..."]

This is virtually identical to recaptcha v3 frontend returning strange, emptyish (invalid?) result with )]}' On the recaptcha settings page - https://www.google.com/recaptcha/admin/site/.../settings I have chosen recaptcha v3 set up domains,…
user10987633
8
votes
1 answer

Am I allowed to translate the reCAPTCHA v3 text containing the links to Privacy Policy and Terms of Service?

According to the docs if I want to hide the reCAPTCHA v3 badge I have to display some text containing links to Privacy Policy and Terms of Service: "This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply." Am…
David
  • 101
  • 6
8
votes
3 answers

Recaptcha V3 assets cause Pagespeed issues - how to defer

We're currently using Google Recaptcha V3 across the public-facing portions of our site - while doing Pagespeed Insights performance testing (Mobile), Google themselves is reporting unused/undeferred CSS as a problem on their own Recaptcha css…
laserslasers
  • 91
  • 1
  • 1
  • 5
8
votes
6 answers

How do I display the captcha icon only on certain pages (VUE reCAPTCHA-v3)?

I use this package : https://www.npmjs.com/package/vue-recaptcha-v3 I add on my main.js : import { VueReCaptcha } from 'vue-recaptcha-v3' Vue.use(VueReCaptcha, { siteKey: 'xxxxxxx' }) I add this code : await this.$recaptcha('login').then((token)…
moses toh
  • 12,344
  • 71
  • 243
  • 443
8
votes
1 answer

Does google reCAPTCHA v3 score drop after many requests?

I would expect recaptcha v3's score to drop if a user (or bot) repeated does the same thing, however that doesn't seem to be the case. Here's a brief extract from my logs while I try different passwords at login on a site I'm…
SColvin
  • 11,584
  • 6
  • 57
  • 71
7
votes
2 answers

How to include reCAPTCHA v3 in the background of pages?

In the reCAPTCHA v3 docs, it says reCAPTCHA works best when it has the most context about interactions with your site, which comes from seeing both legitimate and abusive behavior. For this reason, we recommend including reCAPTCHA verification on…
jojochuu
  • 101
  • 6
7
votes
5 answers

google reCAPTCHA v3 bottomleft

Reading through the code at https://www.gstatic.com/recaptcha/api2/v1531759913576/recaptcha__en.js there are numerous references to bottomleft (as opposed to bottomright where the icon is generally placed, I presume). But how do I enable this…
SColvin
  • 11,584
  • 6
  • 57
  • 71
6
votes
1 answer

Recaptcah V3 Site key Exceed Limitation

Google Recaptcha V3 has a service limit quota of 1000 calls/second or 1 Million requests/month for the free tier. else if the application exceeds these limits then google Sends a warning to the site owner to migrate to Recaptcha V3 Enterprise. I've…
Murad
  • 81
  • 1
  • 3
6
votes
1 answer

How do the keys work with reCAPTCHA v3 Enterprise?

I'm trying to include reCAPTCHA in a React application I'm developing, with Next.js for the server side functionality. I think I'm fundamentally confused by reCAPTCHA Enterprise. The former "free" way to register a domain with reCAPTCHA was such…
6
votes
2 answers

Integrating Google reCaptcha v3 into Angular app with ng-recaptcha

I'd like to protect a register page from automatic submitions, so I decided to try reCaptcha v3. It's an Angular application, and I'm using ng-recaptcha module for easier integration. I've set up a basic example on Stackblitz so you can test it…
Fel
  • 4,428
  • 9
  • 43
  • 94
6
votes
4 answers

Google recaptcha v3 issues

Why does recaptcha v3 throw an error ? ... when I check the humanity of a visitor a second time on the same page? Token is clearly NOT a duplicate. ... so what is a duplicate? First token:…
fodon
  • 4,565
  • 12
  • 44
  • 58
1
2
3
25 26