You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, on our application we get JWT access tokens from an external authentication server.
Some of our users have a lot of claims and roles, making the token really large. When we set it into the Authorization header and send the request to express we get a response saying the request header is too large.
Is there a way to increase the maximum request header size on express or even make it unlimited?
Thanks.
The text was updated successfully, but these errors were encountered:
Hi @rafaelvascc ! The header size (and the 400) are both handled by Node.js HTTP directly, before getting to Express. There are two main methods to change this in Node.js:
Hi, on our application we get JWT access tokens from an external authentication server.
Some of our users have a lot of claims and roles, making the token really large. When we set it into the
Authorization
header and send the request to express we get a response saying the request header is too large.Is there a way to increase the maximum request header size on express or even make it unlimited?
Thanks.
The text was updated successfully, but these errors were encountered: