We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug There is no "typ": "JWT" in header
To Reproduce Try to use RESTClient with @JwtConfig for application secured by "MP-JWT"
Expected behavior JwtBuilder should add typ header in buildJwt method builder.jws.setHeader("typ", "JWT");
builder.jws.setHeader("typ", "JWT");
The text was updated successfully, but these errors were encountered:
hi @sultansoy, thanks for raising this issue. According to RFC 7519 the typ attribute is optional: https://tools.ietf.org/html/rfc7519#section-5.1
It's easy enough to add though. Is this causing an issue with an application / runtime that is requiring it?
Sorry, something went wrong.
@sultansoy is this one still relevant for you?
No branches or pull requests
Describe the bug
There is no "typ": "JWT" in header
To Reproduce
Try to use RESTClient with @JwtConfig for application secured by "MP-JWT"
Expected behavior
JwtBuilder should add typ header in buildJwt method
builder.jws.setHeader("typ", "JWT");
The text was updated successfully, but these errors were encountered: