Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
107 views
in Technique[技术] by (71.8m points)

php - Google ReCaptacha validation

I have this google captcha V2 in my registration form and it works but it also let's quite a lot of spammers trough all the time. Anyone got any idea how to make the validation stronger? i tried to add site verification(expected hostname) and other parameters but i just ends up breakinging it as soon as i try to modify something so it do not work at all.

if (isset($_POST['g-recaptcha-response'])) {
            require('component/recaptcha/src/autoload.php');
            $recaptcha = new ReCaptchaReCaptcha(SECRET_KEY, new ReCaptchaRequestMethodSocketPost());
            $resp = $recaptcha->verify($_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR']);
              if (!$resp->isSuccess()) {
                            setError(t("invalid_captcha", "Captcha confirmation is invalid."));
              }
    }
question from:https://stackoverflow.com/questions/65648820/google-recaptacha-validation

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...