What are the best practices when using JWT for sessions?
In my current project, I am using JWT to maintain session, I stored the user claims like profile image, firstname, lastname in the token. However, whenever I update the user, e.g. the username, or profile image, my JWT automatically becomes stale si...
Aug 28, 2018YXO