go-json-rest
go-json-rest copied to clipboard
Sessions
Are there any plans to implement sessions in the framework?
I tried to use gorilla's session, but it's not compatible because of rest.Request != http.Request and also with the ResponseWriter.
This is not provided by the framework yet. I'd like to have OAuth2 and other forms of authentication and sessions. For now you can use https://github.com/ant0ine/go-json-rest/blob/master/rest/auth_basic.go as an example of auth middleware. Feel free to share you code and contribute.
Thanks!