Overview
Connection Information
Authentication Flow
1. User Authentication
socket.emit('authenticate', 'api-key');
socket.on('authenticated', (response) => {
console.log(response);
// response:
// {
// "status": "success",
// "account": "account"
// }
});2. Unauthenticate
Last updated