I tried to access this website https://gss.mof.gov.cn/zhengwuxinxi/zuixingengxin/ with Pythons request library and got a SSL error.
I have already tried the solutions given for similar problems but they did not solve my problem.
The code I used:
requests.get(url='https://gss.mof.gov.cn/zhengwuxinxi/zuixingengxin/', timeout=20)
The error I got:
HTTPSConnectionPool(host='gss.mof.gov.cn', port=443): Max retries exceeded with url: /zhengwuxinxi/zuixingengxin/ (Caused by SSLError(CertificateError("hostname 'gss.mof.gov.cn' doesn't match either of '*.chinacache.com', 'chinacache.com'",),))