Questions tagged [grecaptcha]

69 questions
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
2 answers

How can I call a function after grecaptcha.execute() has finished executing - triggered by an event?

Currently grecaptcha.execute is being executed on page load as in the first JS example below. If reCAPTCHA challenge is triggered this happens when the page has loaded. Ideally this would happen when the form submit button is clicked instead. So…
DumbDevGirl42069
  • 891
  • 5
  • 18
  • 47
6
votes
0 answers

"Range Error: Maximum call stack size limit exceeded" on using greptcha.reset() method

I am using google recaptcha V2, for captcha verification. Recently, I am facing issue while resetting the captcha using grecaptcha.reset() method. Refer error screenshot below: Have checked the same scenario in the google recaptcha demo website and…
DonRaHulk
  • 575
  • 1
  • 6
  • 18
5
votes
0 answers

Google Recaptcha V2 Invisible - massive increase in load time - ruins page speed optimization

Problem Summary: Google V2 ReCapcha kills all the page speed tuning work that was done just to load in the little "invisible" [not really invisible] iFrames Situation: Got a great SEM landing page, well built, gzipped, minified JS/css, CDN, minimal…
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
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…
3
votes
1 answer

How to make VSCode recognize DefinitelyTyped global variable (grecaptcha) in Vuejs 3 TypeScript project

I have a Vue.js 3 TypeScript project scaffolded with the command npm init vue@latest. Now I want to add reCaptcha v2 to the project from scratch instead of installing support libraries like vue3-recaptcha-v2 etc. Then, instead of having to define…
Yume
  • 73
  • 5
3
votes
3 answers

ReCaptcha Enterprise api call always returns score of 0 but the dashboard shows every score has been 0.8 or greater

I created a ReCaptcha Enterprise project for my frontend and am trying to verify assessments in an AWS Lambda. The ReCaptcha project looks as follows: ReCaptcha Settings The front end code is a react application but I am just using scripts following…
3
votes
0 answers

Google reCAPTCHA's remoteip parameter is ignored

In the documentation of recaptcha (https://developers.google.com/recaptcha/docs/verify) it says that the remoteip parameter is optional, but I am trying to send a hard-coded false IP in the request and yet Google still returns a success:true…
MSG
  • 41
  • 1
  • 3
3
votes
3 answers

Invisible reCaptcha iframe not showing, form stuck

I am loading two scripts on my websites: Where my_site.js looks like this: ... many other functions, not nested function…
Itay
  • 16,601
  • 2
  • 51
  • 72
3
votes
1 answer

How to position Recaptcha V2 challenge popup in the center of the viewport?

My Recaptcha challenge popup overflows the viewport on mobile and I'm also unable to scroll the page. I need to always show challenge popup in the center of the viewport (horizontally and vertically). I've looked at Recaptcha API and didn't found…
Daniel
  • 799
  • 1
  • 12
  • 19
2
votes
0 answers

Google recaptcha V2 Error: We detected that your site isn't verifying reCAPTCHA solutions. This is required for the proper use of reCAPTCHA on your

I need to your help to solve my problem. I'm using Google recaptcha V2 from last 4-5 years and it was working fine but all of sudden its showing following error:- We detected that your site isn't verifying reCAPTCHA solutions. This is required for…
2
votes
0 answers

Will delaying loading Google reCAPTCHA JS until form submission result in more challenges?

I'm implementing Invisible reCAPTCHA on my website, and to reduce the number of third party JS files on page load I'd like to download the https://www.google.com/recaptcha/api.js file only once the user submits a form. Once it loads I would then use…
yts
  • 1,890
  • 1
  • 14
  • 24
2
votes
0 answers

Google Recaptcha - How do I change the default required validation message?

The default message if I am not a robot is g-recaptcha-response is required I want to change it to something else like Recaptcha is required I tried the following but didn't work function onClickSearch(e) { e.preventDefault(); var v =…
Joel HJ
  • 181
  • 1
  • 5
2
votes
2 answers

how do you return a string value to null after either 100 seconds or after it has been called once?

What would the best way of going about creating a consumer-producer type relationship for harvesting and using Recaptcha v2 tokens for web scraping, I have a basic chrome extension in which to harvest these tokens which are then submitted to my java…
user12252748
1
2 3 4 5