#Socket IO authentication
4 messages · Page 1 of 1 (latest)
The usual authentication model?
Send credentials such as username/pass, server sends back a session token, and stores that session token in memory or DB with the user ID, log in time, etc
When the client makes a request the server checks the session, if not valid sends back an auth failed message
Appreciate you!