证书验证失败:无法获取本地颁发者证书。为什么?

证书验证失败:无法获取本地颁发者证书。为什么?

运行以下命令。

PS C:\Users\anups\Desktop\Cloud_AntiScalant> mkcert -install
Created a new local CA 

答案1

您的证书对主机有效localhost

mkcert 本地主机

但是你通过 IP 来访问主机:

url = 'https://127.0.0.1:8000/'
r = 请求.get(url)

这就是软件与你的证书不匹配的原因。尝试使用主机名:

url = 'https://localhost:8000/'   
r = requests.get(url)

相关内容