In my app.js (server) I need to know from where (URL) the request came.
Currently, I\'m passing the URL as parameter from the client:
socket.emit(\'reque
To obtain the connection URL
io.sockets.on('connection', function(socket) { console.log("url: " + socket.handshake.url); });
This will return something like: url: /socket.io/1/?t=1407807394827
url: /socket.io/1/?t=1407807394827