-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
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
Not able to use micronaut to login to AKHQ #1886
Comments
@haraldott can you provide a sample app? I am new to AKHQ |
I am facing the same issue with AKHQ. We use AWS Cognito as our OIDC provider and we can see from the logs that the user gets authenticated successfully but later throws the same error as @haraldott . Cognito issues the claims via id token and we need that map our AD groups to AKHQ groups to grant proper permission.
|
Issue description
Hi all,
we switched from our cookie-based authentication to idtoken-based authentication in our AKHQ service which is using micronaut. While most of the flow appears to work correctly, we are encountering an issue during the SSO callback. Our application logs show the following warning:
openIdToken should be present in user details attributes to use micronaut.security.authentication:idtoken
Below is the configuration we are currently using:
We also tried the bearer authentication method where we are getting the following error:
{ "message":"Page Not Found", "_links":{ "self":{ "href":"/oauth/login/sso", "templated":false } } }
with the following configuration:
We are wondering if there are any configurations that we are missing here?
The text was updated successfully, but these errors were encountered: