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
Some of my python or java programs found the following definitions
python
return jwt.encode( payload, secret, algorithm="HS256", headers={"alg": "HS256", "sign_type": "SIGN"}, )
java
headerClaims.put("alg", "HS256"); headerClaims.put("sign_type", "SIGN"); String token = JWT.create().withPayload(payload).withHeader(headerClaims).sign(alg);
However, the "sign_type" field is not seen in the jsonwebtoken::Header definition. How to customize the header's custom fields?
The text was updated successfully, but these errors were encountered:
You can't, you can only use header fields from the spec in this library
Sorry, something went wrong.
A hashmap may be needed to provide the function of custom fields, and some access may require
+1
very unfortunate, makes the library unusable for cases like https://developer.apple.com/documentation/weatherkitrestapi/request_authentication_for_weatherkit_rest_api
which needs an id field in the header
id
No branches or pull requests
Some of my python or java programs found the following definitions
python
java
However, the "sign_type" field is not seen in the jsonwebtoken::Header definition. How to customize the header's custom fields?
The text was updated successfully, but these errors were encountered: