Keycloak : Client not found exception?

Viewed 17275

I setup Keycloak server and everything run fine in server machine,But when i tried to integrate Keycloak with local machine(localhost) i am getting

We're sorry ... Client not found.

enter image description here

Even i check my local machine ip address and added in Keycloak->Clients->Settings->Valid Redirect URIs even then i am getting same exception.

2 Answers

I had the same issue - In my case keycloak was configured to have a different authBaseUrl so the keycloak url was:

http://localhost:8080/realms/master/...

instead of

http://localhost:8080/auth/realms/master/...

I fixed that on the client side.

Related