我正在为移动应用程序编写服务器,并选择使用 socket.io 将通知从服务器推送到应用程序,但我无法设置 socket.io
当前在 io.connect(server:port) 上发起了无穷无尽的握手流
debug - client authorized
info - handshake authorized HXtC1UPzcsEzO8X7x2B1
debug - client authorized
info - handshake authorized aE7hMGDpp5InO1UWx2B2
debug - client authorized
info - handshake authorized GBx_3n-8Lvbuo4QJx2B3
debug - client authorized
info - handshake authorized tOEl0F5wNlh4xkn1x2B4
debug - client authorized
info - handshake authorized K55Oit22yN9JDWxhx2B5
debug - client authorized
...
我正在将 socket.io-titanium 用于应用程序的客户端,但我无法判断是哪一端导致了此连接问题。
客户:
var io = require('socket.io-titanium');
var socket = io.connect('http://myserver.com:3000');
socket.on('connect', function (data){
Ti.API.log("socket.io connected");
});
socket.on('update', function (data){
Ti.API.log(data);
});
服务器:
index = fs.readFileSync(__dirname + '/index.html');
var updates = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(index);
});
var io = require('socket.io').listen(updates);
var clients = {};
io.sockets.on('connection', function(socket) {
console.log("Server Connection Event");
socket.on('i am client', console.log);
});
io.set("polling duration", 10);
io.set("close timeout", 30);
updates.listen(3000, function(){
console.log("Updates listening on port 3000");
console.log("");
});
我在一个非常长的流(100+)中间收到了一次“服务器连接事件”
我相信握手的想法是每个用户只需要授权和建立一次连接,直到连接关闭。
任何帮助将不胜感激!