我在验证Google reCaptcha表单时遇到一些问题。 我尝试了所有方法,但结果相同,recaptcha的验证是 总是错误的。 我想指定我在其他php文件和同一域上完全使用此代码,并且运行良好! 我还想指定在隐藏的引导程序模式窗口中,recaptcha所在的形式! (这可能会影响POST无效吗?)
function post_captcha($user_response) {
$fields_string = '';
$fields = array(
'secret' => 'MY-SECRET-CODE',
'response' => $user_response
);
foreach($fields as $key=>$value)
$fields_string .= $key . '=' . $value . '&';
$fields_string = rtrim($fields_string, '&');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.google.com/recaptcha/api/siteverify');
curl_setopt($ch, CURLOPT_POST, count($fields));
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, True);
$result = curl_exec($ch);
curl_close($ch);
return json_decode($result, true);
}
// Call the function post_captcha
$res = post_captcha($_POST['g-recaptcha-response']);
if ($res['success']) {
// checked
}else{
//not checked
}