I use a GO server (golang.org), which does have good support for encryption and third party package which provides basic cookie based session handling. I am looking for guidelines on generating tokens, and good practice to store, invalidate etc. My application need custom user management. Can one use Oauth in an offline setting, or any better way?
Share
Generally, session cookies should be:
I’m not sure where OAuth comes into this, since that is an authentication system and you’re asking about session management. (Although I realize the two can be related.)