lipp / lua-websockets

Websockets for Lua.
http://lipp.github.com/lua-websockets/
MIT License
396 stars 113 forks source link

How to handle authentication? #90

Closed thesabbir closed 8 years ago

thesabbir commented 8 years ago

I want to implement a password based authentication between my server and client. How & where should I handle it?

NovusTheory commented 8 years ago

I would advise not to send credentials over websockets but rather a token that authenticates the session

thesabbir commented 8 years ago

thanks