在localhost php上进行recaptcha验证

时间:2014-11-09 08:50:34

标签: php recaptcha

我在localhost上使用re-captcha,它在网站上正确显示但是当我验证来自用户的响应时它会给出错误 -

object(ReCaptchaResponse)#1 (2) { ["is_valid"]=> bool(false) ["error"]=> string(22) "invalid-request-cookie" }

请帮帮我怎么办? 我的系统也在代理服务器之后。

代码 -

- 渲染验证码 - echo recaptcha_get_html($publickey);

阅读验证码 -

$resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp->is_valid) {

由于

0 个答案:

没有答案