When configuring Keycloak OIDC Connector Timeout Syncing Error #24097
yjperez
started this conversation in
Show and tell
Replies: 1 comment
-
Just an update to the above post. The URL got moved to: Notice that it no longer has https://stackoverflow.com/questions/28658735/what-are-keycloaks-oauth2-openid-connect-endpoints |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Getting the below message in the Audit Logs when connecting to a Keycloak OIDC connector
First, you would have to confirm there is connectivity between the Auth server and your Keycloadk IdP. This could be done by running this command:
nc -vz keycloak.example.com 8443
and also running a curl command. If connectivity is active then move to the below steps.In Keycloak version 20 there was a change on where the default
openid-configuration
lives. The URL moved from<keycloak-rul>/auth/realms/api-test/.well_known/openid-configuration
to<keycloak-rul>/auth/realms/api-test/.well_known/openid-configuration
. This file is important because it is how the initial OIDC discovery is triggered. If this is the case for you, then you will need to specify arelative-http-path
in the Keycloak configuration.Beta Was this translation helpful? Give feedback.
All reactions