Socket.io code 200 Error during WebSocket handshake

前端 未结 2 492
一个人的身影
一个人的身影 2021-01-23 02:35

I am using socket.io with nodejs and an apache server over it. I am getting a code 200 as response, I know I must get

2条回答
  •  独厮守ぢ
    2021-01-23 03:08

    This means your requests are not being proxied to your WebSocket handler, but for some other route which returns a 200.

    You should check your WebSocket handler.

提交回复
热议问题