python请求https接口报错(已解决)

python请求https接口报错(已解决),第1张

一、场景
  • urllib.request.urlopen('https://..........')
  • 请求时会验证证书,没有证书或证书有误会报错:
    urllib.error.URLError:
二、解决方法

跳过验证证书,添加以下代码:

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/916545.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存