有什么方法可以从获取响应(NodeJS)中获取有关SSL证书的详细信息吗?

Any way to get details about the SSL Certificate from fetch response (NodeJS)?

提问人:xil3 提问时间:11/18/2023 更新时间:11/18/2023 访问量:39

问:

我一直在尝试从获取请求(HTTPS)中获取SSL证书详细信息;但我还没有找到一种方法来提取这些数据。fetch 是否只是没有可用的数据?

也在看 Axios,这似乎更有前途,但我能看到证书详细信息的唯一方法是启用跟踪,它只是将数据转储到控制台中。

下面是一个示例:

const response = await fetch('https://some.url');

// how do I get the certificate details from this? (i.e. start, end date)
const cert = response.certificate() // this would be nice
node.js 获取 ssl 证书

评论

0赞 xil3 11/18/2023
我知道我可以使用专门设计用于获取证书的库提出另一个请求,但这似乎是多余的。我应该能够从最初的请求中得到它。

答: 暂无答案