Skip to content

Websocket was closed before the connection was estabilshed with binance-api-node ticker and futuresticker #655

Description

@haunt3dd

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");
          }
        });

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions