socket io query
// Client side
const socket = io({
query: { token: 'cde' }
});
// Server side
io.on('connection', (socket) => {
let token = socket.handshake.query.token;
// Do something...
});
socket io query
// Client side
const socket = io({
query: { token: 'cde' }
});
// Server side
io.on('connection', (socket) => {
let token = socket.handshake.query.token;
// Do something...
});
socketio connect websockets
var ws = new WebSocket('ws://localhost/socket.io/?EIO=3&transport=websocket');
ws.send('42' + JSON.stringify(['hello', 'there']));
// ws.onmessage will get a MessageEvent object with the data property being encoded in the similar way.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us