Keycloak login page shows 'invalid parameter: redirect_uri'

Viewed 30539

I am using Keycloak authentication to authenticate an angular app and so far I have managed to redirect my login to Keycloak server. But when redirected instead of the login page I am getting a 500 error page with the message Invalid parameter: redirect_uri

3 Answers

Try following steps

  1. add * to valid redirect_uri
  2. add * to web_origins try again

it worked in my case

Related