是否可以使用请求包使用 TLS 发出请求?
做的时候:
requests.get('someurl')
我越来越:
SSLError: [Errno 8] _ssl.c:491: EOF occurred in violation of protocol
是否可以使用请求包使用 TLS 发出请求?
做的时候:
requests.get('someurl')
我越来越:
SSLError: [Errno 8] _ssl.c:491: EOF occurred in violation of protocol
不确定您正在尝试什么网址,但我希望以下内容有所帮助。
In [35]: url = 'https://www.googleapis.com/freebase/v1/mqlread?query=hello&key=xyz'
In [36]: requests.request("GET",url)
Out[36]: <Response [400]>
有关更多文档,请参阅此处