提问人:xil3 提问时间:11/18/2023 更新时间:11/18/2023 访问量:39
有什么方法可以从获取响应(NodeJS)中获取有关SSL证书的详细信息吗?
Any way to get details about the SSL Certificate from fetch response (NodeJS)?
问:
我一直在尝试从获取请求(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
答: 暂无答案
上一个:导航栏框架错误时,自定义窗口显示
下一个:如何返回异步调用的响应?
评论