我接工作的很好,當客戶端有令牌(由Laravel JWT提供的),但是,需要與客戶打交道,而他們還沒有通過身份驗證,我想類似於:如何發出和收到whitout一個身份驗證使用socketio,智威湯遜
io.sockets
.on('connection', socketioJwt.authorize({
secret: process.env.JWT_SECRET,
timeout: 15000 // 15 seconds to send the authentication message
}))
.on('authenticated', function(socket) {
console.log('Authenticated!!');
// This works:
socket.on('setDataRegistered', function(datos) {
console.log('Registering!');
});
})
// This doesn't works:
.on('config', function(socket) {
console.log('A client wants to be configured before authenticated!');
})
如何在通過身份驗證之前從FrontEnd調用'config'(socket.emit('config'))?
感謝您的幫助。對不起我的英文。
Helloooo,有人可以幫我請。 – bluesky777