We have jwt token which has 9000kb length and this size is more then our server size. so we are unable to authorized it. how can we fix this issue.
We were trying to separate header and claims then authorize them. But could not find any solution.
We have jwt token which has 9000kb length and this size is more then our server size. so we are unable to authorized it. how can we fix this issue.
We were trying to separate header and claims then authorize them. But could not find any solution.
Woah! 9000kb is huuuge!!. The maximum operational limit on most of the webserver is 8k more on this here. Ask yourself:
You can split the entire jwt into multiple jwts and verify each of them but it is still not feasible considering you have 9mb of token.