我正在尝试在我的 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 发送值。