17
有沒有辦法握手一個WebSocket連接到socket.io時,容易通過身份驗證Cookie?我現在必須單獨做到這一點,就像這樣:如何通過WebSockets連接到socket.io時發送cookie?
socket = new io.Socket(document.location.hostname);
socket.addEvent("connect", function()
{
// Send PHP session ID, which will be used to authenticate
var sessid = readCookie("PHPSESSID");
this.send("{'action':'authenticate','sessionid':'"+sessid+"'}");
});
只是爲了將來參考,這個問題一直在socket.io版本0.7及以上處理。 – Chris 2014-01-21 18:52:52