marcospereirampj / python-keycloak

MIT License
692 stars 296 forks source link

Keycloak admin get_group_by_path not fetching data simply by passing group name #555

Open deepbluesquirrel opened 3 months ago

deepbluesquirrel commented 3 months ago

For python I was not able to retrieve data by passing the group name in the get_group_by_path function in keycloak admin, I needed to pass the name proceeds with / inorder to fetch the details but was able to get it through API without '/'

Example: group_name = 'my_group' returns nothing group_name = '/my_group' returns the data

but it works fine on both 'my_group' and '/my_group' in API

Did any one faced the same challenge