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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello,
I'm making a token-based authentication in one of my flask application. I also use keycloak.
When the token is being verified it's expected to have client id in aud claim. AFAIK the aud claim being optional I'm confused with this requirement.
aud
The message I get: INFO : Token is valid but required audience is missing.
INFO : Token is valid but required audience is missing.
The text was updated successfully, but these errors were encountered:
Okay, I will make it optional in the upcoming version. I missed the line where it says it's optional to enforce. I have checked it now:
https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.3
Until then, you can add your client_id in audience. In Client scopes , create a token mapper called Audience and add your client_id in the mapper.
client_id
Will be fixed in #161
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm making a token-based authentication in one of my flask application. I also use keycloak.
When the token is being verified it's expected to have client id in
aud
claim. AFAIK theaud
claim being optional I'm confused with this requirement.The message I get:
INFO : Token is valid but required audience is missing.
The text was updated successfully, but these errors were encountered: