Stateless token verification with JWT(jonatan.nilsson.is)
jonatan.nilsson.is
Stateless token verification with JWT
http://jonatan.nilsson.is/stateless-tokens-with-jwt/
1 comments
Maybe the author meant permissions such as 'read-only' or 'read-write' that place additional restrictions on a token.
Anything else would cause a lot of problems. Role permissions might change while a token is still active.
Anything else would cause a lot of problems. Role permissions might change while a token is still active.
That is basically it: Additional restriction applied to the token.
I was actually referencing this article: https://auth0.com/blog/2014/12/02/using-json-web-tokens-as-a...
I was actually referencing this article: https://auth0.com/blog/2014/12/02/using-json-web-tokens-as-a...
Thanks for clearing it up.
What if you issue the JWT with role permissions embedded, and the user is rejected from the role before the JWT expires. Then they can still execute actions they are no longer allowed to? It just seems like it could end badly...