Authenticating a user in a REST webservice

2020-07-28 Thread jasonfi
>From the research I've done, JWT looks like a good solution. I found a library >for Nim: >[https://github.com/treeform/quickjwt](https://github.com/treeform/quickjwt)

Authenticating a user in a REST webservice

2020-07-28 Thread enthus1ast
I guess you have to build it yourself. I've done something like this for a websocket chat system, build on top of plain asynchttpserver. For http i basically created a (session) cookie in the browser and stored it in the servers datastore. i've done it a little different, since the websocket co

Authenticating a user in a REST webservice

2020-07-28 Thread jasonfi
Are there any libraries to help authenticate a webservice built with Jester? How is everyone else doing this?