php – Ne reCAPTCHA给我403错误

最近一位客户告诉我他的网站reCAPTCHA不再有效.经过调查,我发现谷歌改变了它.我使用2014年11月19日的新文档升级了他们的网站,但它总是给我403错误.我尝试仅提交密钥,并返回带有false和错误的JSON结果.我只是通过从g-recaptcha-response字段提交响应来做同样的事情,并且还返回了带有错误的JSON结果.一旦我使用http_build_query将它们都放入一个字符串中,我就会被谷歌禁止403.

我正在使用新的http://www.google.com/recaptcha/api/siteverify URL.我使用以下代码使用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);

任何帮助将不胜感激.

解决方法:

您必须使用https,因此正确的URL是:

$url = 'https://www.google.com/recaptcha/api/siteverify';

这应该修复403错误.

上一篇:javascript – Google ReCAPTCHA onload回调未触发


下一篇:连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误