我尝试使用Pythons请求库访问此网站https://gss.mof.gov.cn/zhengwuxinxi/zuixingengxin/,但遇到SSL错误。
我已经尝试了针对类似问题的解决方案,但是它们并没有解决我的问题。
我使用的代码:
requests.get(url='https://gss.mof.gov.cn/zhengwuxinxi/zuixingengxin/', timeout=20)
我得到的错误:
HTTPSConnectionPool(host ='gss.mof.gov.cn',端口= 443):url超过了最大重试次数:/ zhengwuxinxi / zuixingengxin /(由SSLError(CertificateError(“ hostname'gss.mof.gov.cn. '与'* .chinacache.com','chinacache.com'',),)都不匹配
答案 0 :(得分:0)
该站点使用的证书不属于该证书。 openssl s_client
确认证书对*.chinacache.com
有效。使用python设置进行大量修改不会确保与站点的连接安全。该网站的所有者必须获得与该网站的主机名匹配的新证书。