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
I only need to decode JWT token, this project is useful to get data from the payload.
In my micro service, I get a JWT Token, but I may not know the signature key used by the server.
The feature could look like below: Jws<Claims> result = Jwts.parserBuilder().disableSigningKey().build().parseClaimsJws(authorizationToken);
I don't know if this feature break any security rule. I mean, I can already find all my payload data, I just wanted to use the JJWT project to make it easier.
The text was updated successfully, but these errors were encountered:
I only need to decode JWT token, this project is useful to get data from the payload.
In my micro service, I get a JWT Token, but I may not know the signature key used by the server.
The feature could look like below:
Jws<Claims> result = Jwts.parserBuilder().disableSigningKey().build().parseClaimsJws(authorizationToken);
I don't know if this feature break any security rule. I mean, I can already find all my payload data, I just wanted to use the JJWT project to make it easier.
The text was updated successfully, but these errors were encountered: