Skip to content

Commit

Permalink
fix authorization endpoint for keycloak auth
Browse files Browse the repository at this point in the history
  • Loading branch information
holiiveira committed Oct 27, 2023
1 parent 8a24d75 commit 7631aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function vueAuth(config) {
name: 'Keycloak',
url: '/auth/keycloak',
clientId: config.client_id,
authorizationEndpoint: `${config.keycloak_url}/auth/realms/${config.keycloak_realm}/protocol/openid-connect/auth`,
authorizationEndpoint: `${config.keycloak_url}/realms/${config.keycloak_realm}/protocol/openid-connect/auth`,
redirectUri: getRedirectUri(basePath),
requiredUrlParams: ['scope'],
optionalUrlParams: ['display', 'state'],
Expand Down

0 comments on commit 7631aab

Please sign in to comment.