Relative Content

Tag Archive for javascriptreactjskeycloakopenid-connectreact-oidc

Auth successful with invalid redirect_uri using react oidc from axa

Issue and Steps to Reproduce With the following configuration for OIDC: const configuration: OidcConfiguration = { client_id: ‘movies-app’, redirect_uri: `${window.location.origin}/authentication/nonsense`, // Invalid redirect URI // silent_redirect_uri: `${window.location.origin}/authentication/silent-callback`, scope: ‘openid offline_access’, // offline_access scope allows client to retrieve refresh_token authority: ‘http://localhost:8080/realms/company-services’, }; And the following router configuration: { path: ‘/’, element: <HomePage />, }, { path: […]