Skip to content Skip to sidebar Skip to footer

Websockets Sending Garbage To Server

I have created a WebSockets connection from my website to my home server running a python script listening on port 3000. I can connect to the server just fine as the server logs th

Solution 1:

Its likely that your WebSocket is never transitioning from CONNECTING to OPEN and thus never calling your onopen function. You need to make sure your python script is going through the Web Socket Handshake on the server side.


Post a Comment for "Websockets Sending Garbage To Server"