我正在尝试在我的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发送值。
答案 0 :(得分:0)
解决了这个问题。似乎QUnit
自动javascript
测试以某种方式与catpcha进行交互,导致incorrect-captcha-sol
代码。