TLS を使用して requests パッケージを使用して要求を行うことは可能ですか?
するとき:
requests.get('someurl')
私は得ています:
SSLError: [Errno 8] _ssl.c:491: EOF occurred in violation of protocol
TLS を使用して requests パッケージを使用して要求を行うことは可能ですか?
するとき:
requests.get('someurl')
私は得ています:
SSLError: [Errno 8] _ssl.c:491: EOF occurred in violation of protocol
どの URL を試しているかわかりませんが、以下がお役に立てば幸いです。
In [35]: url = 'https://www.googleapis.com/freebase/v1/mqlread?query=hello&key=xyz'
In [36]: requests.request("GET",url)
Out[36]: <Response [400]>
詳細なドキュメントについては、こちらを参照してください