一、问题描述
执行Python程序发送get请求,报错如下:/usr/local/lib/python3.9/site-packages/urllib3/connectionpool.py:1013: InsecureRequestWarning: Unverified HTTPS request is being made to host 'pinglun.fx678.com'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
二、解决方案
在程序中增加如下代码:
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)