I have implement Google reCaptchaV3 on my login page
My code to sent post request like following
.pipe(
map(data => new RecaptchaResponse().deserialize(data)),
catchError(() => throwError('No Score')),
);
However I get the error
I did try the following approach:
1) Add 'localhost' on admin console
2) Add 127.0.0.1 on admin console
3) Disable 'Verify the origin of reCAPTCHA solutions' option
However none of above were working.
Any idea on how to test the reCaptcha in localhost?
As it's working on Postman but not on localhost.