I use this websocket example. The browser client sends it 100 times, but only replies a few times
for (let i = 0 ;i < 100 ; i++){
doSend(i)
}
function doSend(message) {
websocket.send(JSON.stringify( {"code":1006,"symbol":message+""}));
}
The server only replied to some requests
I use this websocket example. The browser client sends it 100 times, but only replies a few times
The server only replied to some requests