Dario Sarcevic

Results 3 comments of Dario Sarcevic

I wanted to ask the same question, so is there any suggestions @mauriciovigolo regarding this? To be more accurate, we want routes like '/about', '/signup' publicly accessible. If we exclude...

Hi @mauriciovigolo , We tried to implement guard which would allow that users without authentication can access to public urls (and not access to protected pages), but if we initialize...

@aniabraham I just faced same issue, managed to get attributes as suggested above: ```javascript this.keycloakService.loadUserProfile().then(profile => { console.log(profile.username); console.log(profile['attributes']); //gives you array of all attributes of user, extract what you...