我的google recaptcha有问题。我有一个文件与表单和文件只有PHP验证。我无法获得 g-recaptcha-response 的价值,我真的不知道为什么。
$url = 'https://www.google.com/recaptcha/api/siteverify';
$privatekey = '6L***.....';
$something = file_get_contents($url."?secret=" . $privatekey . "&response=".$_POST['g-recaptcha-response']."&remoteip=". $_SERVER['REMOTE_ADDR']);
$data= json_decode($something);
if(isset($data->success) AND $data->success == true)
{
echo "right";
}
else {
echo "failed bruh";
}
我已经加入了JavaScript并使用了正确的密钥。