Deno Secure Websocket Client #11155
Answered
by
crowlKats
Ghost1928563945
asked this question in
Q&A
-
For some resson, secure websockets do not work in deno. Insecure websockets like const websocket = new WebSocket("wss://echo.websocket.org");
websocket.addEventListener('open', (event:any) => {
console.log(event)
}); |
Beta Was this translation helpful? Give feedback.
Answered by
crowlKats
Jun 27, 2021
Replies: 1 comment 3 replies
-
that website has an old certificate and doesnt meet up to rusttls standards. if you listen to the error event you would get an event there. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Ghost1928563945
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
that website has an old certificate and doesnt meet up to rusttls standards. if you listen to the error event you would get an event there.