ChatGPT解决这个技术问题 Extra ChatGPT

What is the maximum size of JWT token?

jwt

I need to know the maximum length of

JSON Web Token (JWT)

In specs there are no information about it. Could be that, there are no limitations in length ?


C
Community

I've also been trying to find this.

I'd say - try and ensure it's below 7kb.

Whilst JWT defines no upper limit in the spec (http://www.rfc-editor.org/rfc/rfc7519.txt) we do have some operational limits. As a JWT is included in a HTTP header, we've an upper limit (SO: Maximum on http header values) of 8K on the majority of current servers.

As this includes all Request headers < 8kb, with 7kb giving a reasonable amount of room for other headers. The biggest risk to that limit would be cookies (sent in headers and can get large).

As it's encrypted and base64ed there's at least 33% wastage of the original json string, so do check the length of the final encrypted token.

One final point - proxies and other network appliances may apply an abitrary limit along the way...


Is there any practical reason to avoid "large" tokens in the 2-3kb range?
@SamuelElrod it likely depends on your application's requirements. 2-3kb for every request involving a JWT adds a decent amount of baggage to be bringing over the wire every time. If that impacts user perceived performance, then you would limit that.
Try to avoid bloating your token. I'd say 2-3k is already getting way too big, what do you have in there? My current token is 320 bytes.
I'm considering putting a privileges map in mine. it will contain the current user's common JWT info, as well as a map containing the user_id and privilege type for all of the users for which they have privileges. This could theoretically grow without bound.
Interesting, I'm also considering shoveling a map of privileges right now. Right now my plan is to use naive approach and shovel them as JSON array, and if it's a problem I will try to pack the content in a binary-like format in future.
C
Community

As you said, there is no maximum length defined in the RFC7519 (https://www.rfc-editor.org/rfc/rfc7519) or other RFCs related to JWS or JWE.

If you use the JSON Serialized format or JSON Flattened Serialized format, there is no limitation and there is no reason to define a limitation.

But if you use the JSON Compact Serialized format (most common format), you have to keep in mind that it should be as short as possible because it is mainly used in a web context. A 4kb JWT is something that you should avoid.

Take care to store only useful claims and header informations.


T
Tiago Gouvêa

When using heroku the header will be limited at 8k. Depending of how much data are you using on jwt2 it will be reach. The request, when oversize, will not touch your node instance, heroku router will drop it before your API layer..

When processing an incoming request, a router sets up an 8KB receive buffer and begins reading the HTTP request line and request headers. Each of these can be at most 8KB in length, but together can be more than 8KB in total. Requests containing a request line or header line longer than 8KB will be dropped by the router without being dispatched.

See: Heroku Limits