0

我正在尝试在我的 Python Web 应用程序中验证 reCAPTCHA,但我总是收到incorrect-captcha-sol错误,尽管响应是正确的。这是验证代码:

data = {
    'privatekey': config.registry.settings['captcha_private_key'],
    'remoteip': ip,
    'challenge': challenge,
    'response': response,
}
request = urllib2.Request('http://www.google.com/recaptcha/api/verify',
                          urllib.urlencode(data))
response = urllib2.urlopen(request)
if response.readline() != 'true':
    log.error('Captcha validation error, error_code=%s' % (response.readline()))
    raise httpexceptions.HTTPUnauthorized()

为了获得挑战和响应值,我使用get_challenge()get_response()javascript 函数,然后通过 AJAX 发送值。

4

1 回答 1

0

解决了这个问题。似乎QUnit自动化javascript测试以某种方式与导致incorrect-captcha-sol代码的 catpcha 交互。

于 2013-07-25T11:55:41.283 回答