Python教程

python requests check_hostname requires server_hostname

本文主要是介绍python requests check_hostname requires server_hostname,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

最近发现使用requests发送https请求时报错,运行代码:

import requests
response=requests.get('https://www.baidu.com/', verify=False)
print(response.text)

在尝试降低requests版本无果后,使用pip install urllib3==1.25.11降低依赖的urllib版本:

再次运行,成功返回结果:

这篇关于python requests check_hostname requires server_hostname的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!