一、问题描述

  执行Python程序发送get请求,报错如下:/usr/local/lib/python3.9/site-packages/urllib3/执行python程序如下报错解决方案connectionpool.py:1013: InsecureRequestWarning: Unverified HTTPS request is being made to host '执行python程序如下报错解决方案pinglun.fx678.com'. Adding certificate verification is strongly advised. See: 执行python程序如下报错解决方案https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings

 

二、解决方案

  在程序中增加如下代码:

  import urllib3
  urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

相关文章:

  • 2021-12-04
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2021-10-26
  • 2021-10-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2022-12-23
  • 2022-02-22
  • 2022-12-23
  • 2021-10-11
相关资源
相似解决方案