我使用netty-socketio 1.6.6和来自github.com的netty-socketio-demo
var socket = io.connect('http://192.168.202.13:9092', {'username': 'ron', 'password': '1111'});
当我发送消息时,我可以在
中找到它[nioEventLoopGroup-3-1] INFO com.corundumstudio.socketio.handler.PacketHandler - In message: 5:::{"name":"chatevent","args":[{"userName":"user470","message":"ssssssssss"}]} sessionId: 9c6f22f4-7d19-4632-ba50-4eb70b845a13
但在连接时,我找不到'username': 'guo', 'password': '1111'
[nioEventLoopGroup-3-1] INFO com.corundumstudio.socketio.handler.PacketHandler - In message: 2:: sessionId: 9c6f22f4-7d19-4632-ba50-4eb70b845a13
。
我想做的是
1.authentification。
2.向某个特定用户发送消息。
感谢您的帮助。
到现在为止,没有答案。慢慢地我意识到我把用户名和密码放在错误的地方。 我需要写一个anthentification事件来满足这个要求。 我对吗?
答案 0 :(得分:-1)
套接字io中的认证数据通过连接参数发送,如:
http://192.168.202.13:9092/socketio/1/?username=ron&password=1111
在你的netty-socketio Configuration
对象中定义跟随参数:
config.setAuthorizationListener(new AuthorizationListener() {
@Override
public boolean isAuthorized(HandshakeData data) {
String username = data.getSingleUrlParam("username");
String password = data.getSingleUrlParam("password");
// if username and password correct
return true;
// else
return false;
}
});