Questions tagged [react-google-recaptcha]
74 questions
2
votes
2 answers
How to access existing reCAPTCHA v2 settings
I have a site and secret key that I created in 2020. I am attempting to access the reCAPTCHA admin console to change some settings on the existing keys. Whenever I go to the following URL: https://www.google.com/recaptcha/admin, I am immediatly…

Griffin Pair
- 105
- 6
2
votes
0 answers
react-google-recaptcha not showing up
2
votes
2 answers
How to add a google-recaptcha v3 to a functional react component with a form?
I have a ready-made form in React
I'm trying to add a captcha to it but it would seem that with the only correct option the captcha reload infinity loops
I didt think that in such a simple task in React there could be so many problems
import {…

Ilya Nikitin
- 33
- 1
- 6
2
votes
0 answers
Not receiving google reCaptcha V3 token in my react-native android app
import ReCaptcha from 'raect-native-recaptcha-v3'

Prantik Mondal
- 483
- 4
- 14
2
votes
1 answer
How to enable enter button in react-google-recaptcha after captcha verfication?
I need to activate enter button after captcha verified but currently it's not working. It shows anchor:1 Uncaught (in promise) null below is my whole code. I'm using https://www.npmjs.com/package/react-google-recaptcha
enterkey = event => {
…

Sagar Kodte
- 3,723
- 4
- 23
- 52
2
votes
0 answers
Using react-google-recaptcha with react-final-form
I need to implement recaptcha in my form but i cant figure how to do it right.
The problem is that recaptcha is async and when its in invisible mode the token is availiable almoast instantly, but when the user has to select trafic lights it could…

soupman928
- 21
- 1
2
votes
1 answer
How can I add google recaptcha 3 on vuetify?
I want to add google recaptcha 3 in my vuetify project
The google recaptcha 3 like this :
I get reference from here : https://www.npmjs.com/package/vue-recaptcha-v3
First : I run npm install vue-recaptcha-v3
Second : I modify my main.js like this…

moses toh
- 12,344
- 71
- 243
- 443
1
vote
0 answers
Luminosity ratio accessibility issue of reCAPTCHA v3
When using the google reCAPTCHA v3 under private mode and the verification challenge was expired, the font color(#F00) and the background color(#F4F4F4) didn't match the luminosity ratio standard of CCA(Color contrast analyser) tool.
Wondering if…

Melody W.
- 31
- 3
1
vote
1 answer
React Google Recaptcha `executeRecaptcha` function always return `null`
I am using react-google-recaptcha-v3 with version ^1.10.0, but when I want to get the token from the executeRecaptcha function, the function always returns null instead of returning the token. Does anybody have a clue?
Attached code:
import React,…

Raka Pratama
- 59
- 5
1
vote
0 answers
Issue with Rendering Two reCAPTCHA Components Based on Conditional Login and Signup Forms in ReactJS
I'm encountering an issue with integrating reCAPTCHA into my React app for both the login and signup pages. Initially, only one form (either login or signup) is displayed, and upon clicking the "Create Account" button, the login form hides, and the…

RCode
- 379
- 3
- 12
1
vote
1 answer
What will be the g-captcha-response after 1 million usage of Google ReCaptchaV2 free ? Will it be an empty string or something else?
I am working for a project where I have to integrate google recaptcha v2 . I am afraid about what happens if the captcha monthly limit exceeds , How will the google response looks like at that time ? How will I validate for such a scenario ?…

Prince Sharma
- 11
- 2
1
vote
0 answers
Google Recaptcha does not load - React
I wanted to add the google recaptcha on a form and also it works fine when we reload the page or visit the component for the first time, but if from another component we navigate to the form component using react router (link or navigate), the…

Ayush
- 565
- 1
- 7
- 20
1
vote
0 answers
How to verify a react-google-recaptcha v2 using jest while testing a React-Typescript App?
So basically I've a Login form with two input fields (password, email) and a react-google-recaptcha. My use case is simple. Test if the submit button is disabled if the input fields are empty and recaptcha is not verified. Enable it only when input…

Divyansh Singh
- 11
- 2
1
vote
1 answer
Google V3 Captcha only returns size and timeout
I am attempting to implement google's v3 recaptcha. Here is my front end ...
const submitItem = (values) => {
window.grecaptcha.ready(() => {
window.grecaptcha
.execute(SITE_KEY, { action: "submit" })
.then((token) => {
…

Joshua Foxworth
- 1,236
- 1
- 22
- 50
1
vote
0 answers
Server side validation fails for Google Recaptcha V2
We are getting 504 Gateway Time-out in the Google Recaptcha after submitting the form in our Web Portal.
So far when we curl in the App Server:
curl -X POST -H "Content-Type: application/json" \
-d '{"secret": "abc123", "response": "def456"}' \
…

Compaq LE2202x
- 2,030
- 9
- 45
- 62