google-captcha
v1.0.2
Published
Verify Google Captcha with Node.js
Downloads
5
Readme
google-captcha function to verify the captcha response
import captchaVerify from "google-captcha";
const CAPTCHA = "yourcaptcharesponse";
const SECRET_KEY = "yoursecretkey";
const SCORE = 0.5;
const result = captchaVerify({
captcha: CAPTCHA,
secretKey: SECRET_KEY,
score: SCORE,
});