S
S
sheeel2019-08-30 18:40:56
Node.js
sheeel, 2019-08-30 18:40:56

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

And here is the 5d69436a7eb25867671193.png
help error

Answer the question

In order to leave comments, you need to log in

1 answer(s)
F
Flaksirus, 2020-04-24
@Flaksirus

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 question

Ask a Question

731 491 924 answers to any question