Answer the question
In order to leave comments, you need to log in
Server sent a subprotocol but none was requested?
const WebSocket = require('ws');
const ws = new WebSocket('wss://betting-public-gql.gin.bet/graphql');
ws.on('open', () => {
console.log('open')
});
ws.on('message', (data) => {
console.log(data);
});
Answer the question
In order to leave comments, you need to log in
I understand that it's late, but for those who google this question, I'll still answer.
The constructor call must be made with one more argument - the protocol or their enumeration.
Something like this:
```
new WebSocket('wss://betting-public-gql.gin.bet/graphql', 'graphql-ws');
```
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question