如何从 wss 端点读取服务器证书?
How to read server certificate from wss endpoint?
我有要连接的 websocket 端点 wss://http-testnet.hecochain.com/
,
但我无法在代码中使用它的证书。
虽然要为 HTTP URL 证书,您可以只使用浏览器(参见下面的 1)和 2)),
WS没有办法,因为它没有显示在浏览器中
链接
-
- https://superuser.com/questions/97201/how-to-save-a-remote-server-ssl-certificate-locally-as-a-file,例如
openssl s_client -connect google.com:443 -showcerts
-
嗯,因为实际上是在 https 端口 443 上工作,所以证书对于 wss 是相同的:
openssl s_client -connect http-testnet.hecochain.com:443 -showcerts
openssl s_client -connect ws-testnet.hecochain.com:443 -showcerts
我有要连接的 websocket 端点 wss://http-testnet.hecochain.com/
,
但我无法在代码中使用它的证书。
虽然要为 HTTP URL 证书,您可以只使用浏览器(参见下面的 1)和 2)), WS没有办法,因为它没有显示在浏览器中
链接
-
- https://superuser.com/questions/97201/how-to-save-a-remote-server-ssl-certificate-locally-as-a-file,例如
openssl s_client -connect google.com:443 -showcerts
- https://superuser.com/questions/97201/how-to-save-a-remote-server-ssl-certificate-locally-as-a-file,例如
嗯,因为实际上是在 https 端口 443 上工作,所以证书对于 wss 是相同的:
openssl s_client -connect http-testnet.hecochain.com:443 -showcerts
openssl s_client -connect ws-testnet.hecochain.com:443 -showcerts