回答:
ドキュメントから:
requests
またverify
、Falseに設定すると、SSL証明書の検証を無視できます 。>>> requests.get('https://kennethreitz.com', verify=False) <Response [200]>
サードパーティのモジュールを使用していてチェックを無効にしたい場合は、サルがパッチrequests
を適用しverify=False
てデフォルトに変更し、警告を表示しないようにするコンテキストマネージャを次に示します。
import warnings
import contextlib
import requests
from urllib3.exceptions import InsecureRequestWarning
old_merge_environment_settings = requests.Session.merge_environment_settings
@contextlib.contextmanager
def no_ssl_verification():
opened_adapters = set()
def merge_environment_settings(self, url, proxies, stream, verify, cert):
# Verification happens only once per connection so we need to close
# all the opened adapters once we're done. Otherwise, the effects of
# verify=False persist beyond the end of this context manager.
opened_adapters.add(self.get_adapter(url))
settings = old_merge_environment_settings(self, url, proxies, stream, verify, cert)
settings['verify'] = False
return settings
requests.Session.merge_environment_settings = merge_environment_settings
try:
with warnings.catch_warnings():
warnings.simplefilter('ignore', InsecureRequestWarning)
yield
finally:
requests.Session.merge_environment_settings = old_merge_environment_settings
for adapter in opened_adapters:
try:
adapter.close()
except:
pass
使い方は次のとおりです。
with no_ssl_verification():
requests.get('https://wrong.host.badssl.com/')
print('It works')
requests.get('https://wrong.host.badssl.com/', verify=True)
print('Even if you try to force it to')
requests.get('https://wrong.host.badssl.com/', verify=False)
print('It resets back')
session = requests.Session()
session.verify = True
with no_ssl_verification():
session.get('https://wrong.host.badssl.com/', verify=True)
print('Works even here')
try:
requests.get('https://wrong.host.badssl.com/')
except requests.exceptions.SSLError:
print('It breaks')
try:
session.get('https://wrong.host.badssl.com/')
except requests.exceptions.SSLError:
print('It breaks here again')
このコードは、コンテキストマネージャを終了すると、パッチが適用された要求を処理したすべての開いているアダプタを閉じることに注意してください。これは、リクエストがセッションごとの接続プールを維持し、証明書の検証が接続ごとに1回だけ行われるため、次のような予期しないことが発生するためです。
>>> import requests
>>> session = requests.Session()
>>> session.get('https://wrong.host.badssl.com/', verify=False)
/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py:857: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecureRequestWarning)
<Response [200]>
>>> session.get('https://wrong.host.badssl.com/', verify=True)
/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py:857: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecureRequestWarning)
<Response [200]>
requests
、verify
デフォルトはですFalse
。
requests.packages.urllib3.disable_warnings()
from urllib3.exceptions import InsecureRequestWarning
その後requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
使用requests.packages.urllib3.disable_warnings()
してverify=False
のrequests
方法。
import requests
from urllib3.exceptions import InsecureRequestWarning
# Suppress only the single warning from urllib3 needed.
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
# Set `verify=False` on `requests.post`.
requests.post(url='https://example.com', data={'bar':'baz'}, verify=False)
verify=False
とにかく存在する必要があります。Tnx。
from urllib3.exceptions import InsecureRequestWarning
その後requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.InsecureRequestWarning)
。これが機能するのurllib3.exceptions.InsecureRequestWarning
は、が使用するものとまったく同じであることを保証するためrequests
です。
Blenderの回答に追加するには、すべてのリクエストに対してSSLを無効にすることができます。Session.verify = False
import requests
session = requests.Session()
session.verify = False
session.post(url='https://foo.com', data={'bar':'baz'})
なお、urllib3
(用途を要求する)、強く意欲未検証HTTPS要求を行うと発生しますInsecureRequestWarning
。
また、環境変数からも実行できます。
export CURL_CA_BUNDLE=""
export REQUESTS_CA_BUNDLE='your-ca.pem'
os.environ['REQUESTS_CA_BUNDLE'] = 'FiddlerRootCertificate_Base64_Encoded_X.509.cer.pem' # your-ca.pem
を使用する場合、Python 3.8.3 で機能します
verify = Falseオプションを使用してpostリクエストを正確に送信する場合は、次のコードを使用するのが最も速い方法です。
import requests
requests.api.request('post', url, data={'bar':'baz'}, json=None, verify=False)