You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling the login() function, then the user is redirected to the Keycloak login form. A successful login also created a session on the Keycloak admin interface.
However there are two behaviors I don't understand:
The console.log() does not print anything. It looks as if the statement is not reached at all.
After the successful login, the user gets redirected to an URL like this: http://localhost:8093/#/&state=10fa51fd-e7f0-427b-8ee3-671902457ec0&session_state=05025f56-a4da-4cdd-b844-cf5353a06e39&code=33ffa310-8fea-423e-9add-05a232b3eec0.05025f56-a4da-4cdd-b844-cf5353a06e39.fe33e875-5d8b-4c99-81cc-a72067a4bf3a. Here I would have expected 'http://localhost:8093/#.
The text was updated successfully, but these errors were encountered:
Libary seems uncomplete and undocumented. Same issue with the URL. also "Error: Could not read access token" when not using login-required. Routeguards don't work. no documentation about that... alot of issues
I'm trying to integrate the
keycloak-js
(vue-keycloak
resp.) into my Quasar 2 application based on Vue 3.This is how I setup the Keycloak instance:
onLoad: null
was added as the app provides a login and logout button which shall trigger the keycloak functions.The following code shows the component which shall trigger the
login()
function.When calling the
login()
function, then the user is redirected to the Keycloak login form. A successful login also created a session on the Keycloak admin interface.However there are two behaviors I don't understand:
console.log()
does not print anything. It looks as if the statement is not reached at all.http://localhost:8093/#/&state=10fa51fd-e7f0-427b-8ee3-671902457ec0&session_state=05025f56-a4da-4cdd-b844-cf5353a06e39&code=33ffa310-8fea-423e-9add-05a232b3eec0.05025f56-a4da-4cdd-b844-cf5353a06e39.fe33e875-5d8b-4c99-81cc-a72067a4bf3a
. Here I would have expected'http://localhost:8093/#
.The text was updated successfully, but these errors were encountered: