binance-api-node
binance-api-node copied to clipboard
Websocket was closed before the connection was estabilshed with binance-api-node ticker and futuresticker
im trying to closed the connection when running some code and activate the connection again but its give me the error "Websocket was closed before the connection was estabilshed"
const currentWebSocketSpot = client2.ws.ticker( symbol.toLowerCase(), (ticker) => { createFunc(onMessage, "spot", symbol)({ data: JSON.stringify(ticker) }); } ); const currentWebSocketFuture = client2.ws.futuresTicker( symbol.toLowerCase(), (ticker) => { createFunc( onMessage, "future", symbol )({ data: JSON.stringify(ticker) }); } ); webSocketsArr.push({ currentWebSocketSpot, currentWebSocketFuture, });
and this is how i stop the websocket
webSocketsArr.forEach((e) => {
try {
e.currentWebSocketSpot();
e.currentWebSocketFuture();
} catch (err) {
console.log("err stop ws");
}
});
Hello, I wanted to check if you were able to resolve the issue you mentioned earlier? I had the same problem.