gpt4 book ai didi

node.js - 加载资源失败:net::ERR_CERT_AUTHORITY_INVALID

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:52 24 4
gpt4 key购买 nike

我正在通过 https 实现 Node js 脚本。

Node js

const options = {
key: fs.readFileSync('private.key'),
cert: fs.readFileSync('cert.crt'),
// This is necessary only if using the client certificate authentication.
requestCert: true,
rejectUnauthorized: true,

// This is necessary only if the client uses the self-signed certificate.
ca: [fs.readFileSync('client-cert.pem')]
};

在每个请求中都会出现错误:- ERR_CERT_AUTHORITY_INVALID

我已经搜索了很多,但没有找到。

我使用以下命令生成客户端 key :-

openssl req -x509 -newkey rsa:2048 -keyout client-key.pem -out client-cert.pem -days 365

我在服务器上创建 .crt 和私钥并使用它们。

我做错了什么?

最佳答案

我遇到过类似的情况,跟证书有关。它还提供特定 url 的信息。单击该 url 将提示您访问不安全的内容,单击该 url 将允许通过刷新 url 进行后续访问。

enter image description here

关于node.js - 加载资源失败:net::ERR_CERT_AUTHORITY_INVALID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52411188/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com