V
V
vetsmen2017-11-20 21:37:45
JavaScript
vetsmen, 2017-11-20 21:37:45

How to write a token to a socket as a global variable?

I need to pass a token on every request to the server via socket.io. Why not write it every time in the data that I pass to the server?
I have seen this method:

var socket = io.connect('http://localhost:9000', {
  'query': 'token=' + your_token
});

However, on the server, I don't see this line when outputting the entire socket object to the console. And I don’t know how to change it on the fly, except without reconnect. Are there any ideas?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Exploding, 2017-11-20
@Exploding

Move the declaration to the global scope, and where the assignment is, remove the var

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question