最近一位客户告诉我他的网站reCAPTCHA不再有效。经过调查,我发现谷歌改变了它。我使用2014年11月19日的新文档升级了他们的网站,但它总是给我403错误。我尝试仅提交密钥,并返回带有false和错误的JSON结果。我只是通过从g-recaptcha-response字段提交响应来做同样的事情,并且还返回了带有错误的JSON结果。一旦我使用http_build_query将它们都放入一个字符串中,我就会被谷歌禁止403。
我正在使用新的http://www.google.com/recaptcha/api/siteverify网址。我使用以下代码使用PHP cURL提交它:
$post_data = array('response'=>$response, 'secret'=>$privatekey);
$curlPost = http_build_query($post_data, '', '&');
$ch = curl_init();
//Set the URL of the page or file to download.
$url = 'http://www.google.com/recaptcha/api/siteverify';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data_json = curl_exec($ch);
非常感谢任何帮助。
答案 0 :(得分:6)
您必须使用https,因此正确的网址为:
$url = 'https://www.google.com/recaptcha/api/siteverify';
这应该可以解决403错误。