zoukankan      html  css  js  c++  java
  • 关闭SSL证书验证

    转载 Python3之关闭SSL证书验证

    转载 Python requests 移除SSL认证,控制台输出InsecureRequestWarning取消方法

    报错信息:

     1 Traceback (most recent call last):
     2   File "D:Python36libsite-packagesurllib3contribpyopenssl.py", line 441, in wrap_socket
     3     cnx.do_handshake()
     4   File "D:Python36libsite-packagesOpenSSLSSL.py", line 1806, in do_handshake
     5     self._raise_ssl_error(self._ssl, result)
     6   File "D:Python36libsite-packagesOpenSSLSSL.py", line 1546, in _raise_ssl_error
     7     _raise_current_error()
     8   File "D:Python36libsite-packagesOpenSSL\_util.py", line 54, in exception_from_error_queue
     9     raise exception_type(errors)
    10 OpenSSL.SSL.Error: [('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')]
    11 
    12 During handling of the above exception, another exception occurred:

    解决方法

    1 #参数:verify=False
    2 html = requests.get(item_url, headers=headers, verify=False)
    3 # print(html.content)

    今天遇到在requests设置移除SSL认证的时候,控制台会抛出以下警告:

    1 C:Python27libsite-packages
    equestspackagesurllib3connectionpool.py:843: 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
    2   InsecureRequestWarning)
    3 C:Python27libsite-packages
    equestspackagesurllib3connectionpool.py:843: 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
    4   InsecureRequestWarning)

    解决方法

    1 from requests.packages.urllib3.exceptions import InsecureRequestWarning
    2 # 禁用安全请求警告
    3 requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
  • 相关阅读:
    列表
    CENTOS安装xwindow
    查看LINUX系统的配置
    LINUX开启SAMBA服务
    oracle linux 7 yum报错解决:COULD NOT RESOLVE HOST: YUM.ORACLE.COM
    ORACLE百分比分析函数RATIO_TO_REPORT() OVER()
    用matlab计算线性回归问题
    OL7.6上RPM方式安装Oracle 19c
    使用vnc远程操控Centos7.6
    OPATCH在线补丁
  • 原文地址:https://www.cnblogs.com/littlebob/p/9262814.html
Copyright © 2011-2022 走看看