标签: ssl curl proxy
如果要调试基于https_proxy的连接,经典的做法是使用openssl s_client -showcerts -connect HOST:443转储证书。
openssl s_client -showcerts -connect HOST:443
假设https_proxy=http://192.168.1.1:3128在发出http请求时如何转储代理返回的证书,假设https://pypi.org
https_proxy=http://192.168.1.1:3128
https://pypi.org
很明显,代理应该使用自己的CA权限动态创建返回的证书。
我想转存此证书,因为curl接受它是有效的,没有任何问题,我发现python-requests阻塞了。