当你遇到 axioserror: certificate has expired 这个错误时,通常意味着你尝试通过 HTTPS 连接到一个服务器,但该服务器使用的 SSL/TLS 证书已经过期。这会导致浏览器或客户端(如 Axios)拒绝建立安全连接。以下是一些解决这个问题的步骤: 确认错误信息的来源和含义: 错误信息表明 Axios 在尝试建立安全连接时遇到了问...
Alternatively, you can use the https.checkServerIdentity option to customize the certificate verification process. This option should be set to a function that takes in the server's hostname and certificate and returns an error if the certificate is invalid or otherwise should not be trusted. Her...