lipp / lua-websockets

Websockets for Lua.

Home Page:http://lipp.github.com/lua-websockets/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to handle authentication?

thesabbir opened this issue · comments

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

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

thanks