Keycloak/OIDC : retrieve user groups attributes

22,646

Solution 1

This is how I could eventually map group attributes (inherited as user attributes, as suspected before) into user informations, into the "other claims" section :

User Attribute Mapper

Solution 2

I was able to achieve this by adding groups/roles info in token other claims property:

For this in keycloak config, go to your client -> mappers & add a group/role mapper. E.g.

enter image description here

Now this info will start coming in your access token:

enter image description here

To access these group attribute in Java you can extract it from otherclaims property of accesstoken. E.g.:

KeycloakSecurityContext keycloakSecurityContext = (KeycloakSecurityContext)(request.getAttribute(KeycloakSecurityContext.class.getName()));         
AccesToken token = keycloakSecurityContext.getToken();

In below image you can see that otherclaims property of token is filled with groups attribute that we created on keycloak. Note that if we had named "token claim property" as groupXYZ, the otherclaims would be showing: groupsXYZ=[Administrator]

enter image description here

Share:
22,646
Thomas Escolan
Author by

Thomas Escolan

More than twenty years as a project manager, scrummaster, and Java geek.

Updated on July 09, 2022

Comments

  • Thomas Escolan
    Thomas Escolan almost 2 years

    I've extracted a user's groups information from the OIDC endpoint of Keycloak, but they don't come with the group ATTRIBUTES I defined (see Attributes tab into the group form, near Settings). Is there a claim to add to my request?

    I'm using a RESTeasy client to reach Keycloak's admin API (had much better results than using the provided admin client, yet):

    @Path("/admin/realms/{realm}")
    public interface KeycloakAdminService {
        @GET
        @Path("/users/{id}/groups")
        @Consumes(MediaType.APPLICATION_JSON)
        @Produces(MediaType.APPLICATION_JSON)
        List<GroupRepresentation> getUserGroups(@PathParam("realm") String realm, @PathParam("id") String userId,
                                                @HeaderParam(AUTHORIZATION) String accessToken);
        //DEBUG the access token must always be prefixed by "Bearer "
    }
    

    So I can fetch a user's groups:

    private void fetchUserGroups(UserInfoOIDC infos, String userId) {
        log.info("Fetching user groups from {}...", getRealm());
        try {
            KeycloakAdminService proxy = kcTarget.proxy(KeycloakAdminService.class);
            AccessTokenResponse response = authzClient.obtainAccessToken(getAdminUsername(), getAdminPassword());
            List<GroupRepresentation> groups = proxy.getUserGroups(getRealm(), userId,
                    "Bearer " + response.getToken());
            infos.importUserGroups(groups); //DEBUG here we go!
        } catch (WebApplicationException e) {
            log.error("User groups failure on {}: {}", getRealm(), e.getMessage());
        }
    }
    

    But when it comes to data exploration, it turns out that no attributes are provided into the GroupRepresentation#getAttributes structure.

    I've read that claims can be added to user info requests. Does it work on the admin API? How can I achieve that result with RESTeasy templates? Thx

  • Thomas Escolan
    Thomas Escolan almost 5 years
    Fine, I indeed could retrieve all groups attributes into "other claims" as yous said (mixed into one single "groups" entry actually, but that doesn't hurt for my use case) when asking admin API user info (that is to say into UserInfo, not into AccessTokenResponse). Thx a lot!
  • Thomas Escolan
    Thomas Escolan almost 5 years
    My bad @tryingtolearn ... what I retrieved were group NAMES, BUT what I need is my groups' attributes!
  • Tomek Cejner
    Tomek Cejner over 3 years
    did it work for you? The group attributes cannot be mapped using mapper AFAIK...
  • WastedFreeTime
    WastedFreeTime over 3 years
    Should you use groups for permissions? Shouldnt we use roles? Iam not sure about the best approach to set permissions. Iam new to keycloak; Hopefully its not a stupid question.
  • Crystark
    Crystark over 3 years
    Took me a while to understand this answer. You refer to the following: Users that become members of a group inherit the attributes that group defines. That means you can actually do a user attribute mapping and expect to fetch attributes from their groups. Careful though as you might face some conflicts between the names of the group an user attributes
  • CodeShane
    CodeShane over 2 years
    Still very helpful almost three years later, thank you!