1.查询Python Requests默认调用的cert证书位置
import certifi
certifi.where()
如果提示没有certifi,需要安装certifi包(pip install certifi)
2.配置fiddler,打开 127.0.0.1:8888
下载证书文件并导出base64
编码
3.将第三步中导出的证书信息复制出来,粘贴到第一步中输出cacert.pem文件末尾,保存
重新运行代码,即可。
引用
- Unable to get local issuer certificate when using requests:https://stackoverflow.com/questions/51925384/unable-to-get-local-issuer-certificate-when-using-requests-in-python
- 执行python时,使用fiddler代理,提示Unable to get local issuer certificate when using requests in python:https://blog.csdn.net/iKaChu/article/details/106787413
评论 (0)