Is it possible to add a query parameter when connecting to a socket.io server, so that client can be authenticated (via JWT)?
In a javascript client, it is as easy as:
var socket = io.connect('http://localhost:9000', {
'query': 'token=' + your_jwt
});