JSON Web Tokens
jwt.io
JSON Web Tokens
1–10 of 76 posts
Re: JSON Web Tokens
#2The main downside is that the representation (base64-encoded json) is pretty bulky for something that might be used in HTTP headers and URLs, but it does make them easy to debug.
Re: JSON Web Tokens
#3Re: JSON Web Tokens
#4Re: JSON Web Tokens
#5Re: JSON Web Tokens
#6How does this not lead to a situation where you are trusting the client for authentication/authorization information?
Re: JSON Web Tokens
#7How does this not lead to a situation where you are trusting the client for authentication/authorization information?
[0] https://tools.ietf.org/html/draft-ietf-jose-json-web-signatu...
[1] http://tools.ietf.org/html/draft-ietf-jose-json-web-encrypti...
Re: JSON Web Tokens
#8We (Firebase) use JWTs to integrate with an existing app's userbase[1].
[1] https://www.firebase.com/docs/web/guide/simple-login/custom....
Re: JSON Web Tokens
#9We (Auth0) are heavy promoters of the usage of JWT. Here are some articles about using JWT instead of cookies on single page apps with APIs, and its pros/cons.
https://auth0.com/blog/2014/01/07/angularjs-authentication-w...
https://auth0.com/blog/2014/01/27/ten-things-you-should-know...
Re: JSON Web Tokens
#10I've been really pleased with how simple and straightforward it is for implementors. It's good to see it getting more visibility. Thanks to Auth0 for educating the community.