当我在http://www.google.com上运行以下示例代码时,它运行正常 但是当我尝试https://www.google.com时,我收到了这个错误:
Requesting https://www.google.com
Unhandled error in Deferred:
Unhandled Error
Traceback (most recent call last):
Failure: twisted.web._newclient.ResponseNeverReceived: [<twisted.python.failure.Failure <class 'OpenSSL.SSL.Error'>>]
我使用的是python 2.7.8,twisted 14.0.2,service_identity 14.0.0,treq 0.2.1,OpenSSL 0.14
import treq
from twisted.internet import reactor, defer
import sys
@defer.inlineCallbacks
def doit(url):
print "Requesting "+ url + "\n"
results = yield treq.get(url)
print "...got results\n"
content = yield results.content()
print "%s"%content
reactor.stop()
def main():
url = sys.argv[1]
reactor.callLater(0, doit, url)
reactor.run()
if __name__ == '__main__':
main()
提前致谢!
答案 0 :(得分:5)
此处的问题很可能是您没有选择任何信任根,因此OpenSSL无法验证连接。
您可以通过执行pip install certifi
以OpenSSL可以使用的格式获取一些信任根,然后将SSL_CERT_FILE
环境变量设置为指向python -m certifi
的输出。在Python中,您可以在脚本的最顶部使用import certifi; os.environ["SSL_CERT_FILE"] = certifi.where()
执行此操作(在导入任何OpenSSL绑定之前)。