ユーザーとパスワードを検証する前に、ハンドラーでCaptcha Google reCaptchaを確認したい。
require_once('recaptchalib.php');
$privatekey = "your_private_key";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
if (!$resp->is_valid) {
// What happens when the CAPTCHA was entered incorrectly
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
} else {
// Your code here to handle a successful verification
}
私は FOSUserBundle を使用しており、ハンドラーを使用したり、コントローラーを拡張したりする前に、キャプチャが正しいかどうかを確認したいと考えています。
私の質問は、これを行うためにどのハンドラーを使用できますか? 前と同じようにログインしますか?