参考链接
Python常见问题 - python3 使用requests发送HTTPS请求报certificate verify failed 错误 - 小菠萝测试笔记 - 博客园
如何解决?
关掉验证即可,如下
requests.get(url, parmas=parmas, headers=header, cookies=cookie, verify=False)
Python常见问题 - python3 使用requests发送HTTPS请求报certificate verify failed 错误 - 小菠萝测试笔记 - 博客园
关掉验证即可,如下
requests.get(url, parmas=parmas, headers=header, cookies=cookie, verify=False)