|
|
|
|
|
by CodeLieutenant
26 days ago
|
|
How that is possible, when every web framework has a package for handling sessions, and in a secure manner. Rolling everything on your own is time consuming and error prone. I know you should not use library for everything, but this is solved problem for a long long time (like crypto), and just using of the shelf solution is right choice to me. You can set the session to be across multiple subdomains and it will work out of the box. Eveything else can use plain tokens stored in the DB |
|