如何在Client中获取socket.io客户端的会话ID

时间:2011-08-08 09:19:21

标签: javascript socket.io

我想在socket.io客户端获取客户端的会话ID。

这是我的socket.io客户端:

var socket = new io.Socket(config.host, {port: config.port, rememberTransport: false});
    // when connected, clear out display
    socket.on('connect',function() {
        console.log('dummy user connected');
    });
    socket.on('disconnect',function() {
        console.log('disconnected');
    });
    socket.connect();
    return socket;

我想获得此客户的会话ID,我该怎么做?

8 个答案:

答案 0 :(得分:40)

请仔细阅读my primer这个话题。

<强>更新

var sio = require('socket.io'),
    app = require('express').createServer();

app.listen(8080);
sio = sio.listen(app);

sio.on('connection', function (client) {
  console.log('client connected');

  // send the clients id to the client itself.
  client.send(client.id);

  client.on('disconnect', function () {
    console.log('client disconnected');
  });
});

答案 1 :(得分:38)

在socket.io&gt; = 1.0上,在触发连接事件后:

var socket = io('localhost');
var id = socket.io.engine.id

答案 2 :(得分:10)

我只是遇到了同样的问题/问题并且像这样解决了(只有客户端代码):

var io = io.connect('localhost');

io.on('connect', function () {
    console.log(this.socket.sessionid);
});

答案 3 :(得分:9)

*请注意:自v0.9起,setget API已被弃用*

以下代码只能用于版本 socket.io&lt; 0.9
http://socket.io/docs/migrating-from-0-9/



它可以通过握手/授权机制完成。

var cookie = require('cookie');
io.set('authorization', function (data, accept) {
    // check if there's a cookie header
    if (data.headers.cookie) {
        // if there is, parse the cookie
        data.cookie = cookie.parse(data.headers.cookie);
        // note that you will need to use the same key to grad the
        // session id, as you specified in the Express setup.
        data.sessionID = data.cookie['express.sid'];
    } else {
       // if there isn't, turn down the connection with a message
       // and leave the function.
       return accept('No cookie transmitted.', false);
    }
    // accept the incoming connection
    accept(null, true);
});

现在可以通过socket.io连接对象的handshake属性访问分配给数据对象的所有属性。

io.sockets.on('connection', function (socket) {
    console.log('sessionID ' + socket.handshake.sessionID);
});

答案 4 :(得分:2)

出于某种原因

socket.on('connect', function() {
    console.log(socket.io.engine.id);
}); 

对我不起作用。然而

socket.on('connect', function() {
    console.log(io().id);
}); 

对我有用。希望这对于那些在获取身份证方面也存在问题的人也很有帮助。顺便说一下,我使用Socket IO&gt; = 1.0。

答案 5 :(得分:0)

尝试使用您的代码 socket.socket.sessionid 即

    var socket = io.connect('http://localhost');
alert(socket.socket.sessionid);
  var sendBtn= document.getElementById('btnSend');
  sendBtn.onclick= function(){
var userId=document.getElementById('txt1').value;
var userMsg = document.getElementById('txt2').value;
socket.emit('sendto',{username: userId, message: userMsg});
};

  socket.on('news', function (data) {
    console.log(data);
    socket.emit('my other event', { my: 'data' });
  });
  socket.on('message',function(data){ console.log(data);});

答案 6 :(得分:0)

在服务器端

io.on('connection', socket => {
    console.log(socket.id)
})

在客户端

import io from 'socket.io-client';

socket = io.connect('http://localhost:5000');
socket.on('connect', () => {
    console.log(socket.id, socket.io.engine.id, socket.json.id)
})

如果socket.id不起作用,请确保在on('connect')或连接后调用它。

答案 7 :(得分:-1)

试试这种方式。

                var socket = io.connect('http://...');
                console.log(socket.Socket.sessionid);