How to Use JSON Web Tokens
github.com
How to Use JSON Web Tokens
1–10 of 135 posts
Re: How to Use JSON Web Tokens
#2Re: How to Use JSON Web Tokens
#3JWTs are radioactive. Proceed with caution.
Re: How to Use JSON Web Tokens
#4JWTs are radioactive. Proceed with caution.
I keep hearing this. Is there a good writeup available?
Re: How to Use JSON Web Tokens
#5JWTs are radioactive. Proceed with caution.
I keep hearing this. Is there a good writeup available?
Re: How to Use JSON Web Tokens
#6Re: How to Use JSON Web Tokens
#7Earlier quoted context omitted.
I keep hearing this. Is there a good writeup available?
The parent comment isn't very helpful, but from what I understand people dislike JWTs because it makes it hard to invalidate a session without some sort of work-around. For example, you can use 2 tokens, one short lived, and one long lived to get around the invalidation problem, but then you will need to occasionally validate that both tokens are still valid, and that state needs to be stored, and now you're storing…
Re: How to Use JSON Web Tokens
#8JWTs are radioactive. Proceed with caution.
I keep hearing this. Is there a good writeup available?
http://cryto.net/~joepie91/blog/2016/06/13/stop-using-jwt-fo...
Also: it's very easy to abuse JWT tokens by storing them inappropriately... https://stackoverflow.com/a/27301616/19020
Re: How to Use JSON Web Tokens
#9JWTs are radioactive. Proceed with caution.
I keep hearing this. Is there a good writeup available?
Any other important concerns or which way is recommended currently?
Re: How to Use JSON Web Tokens
#10The core concepts can be translated into any language that supports integers, happy to reference any alternative implementations.