Richard Nemeth
Richard Nemeth
Hi @alexrohozneanu Thanks for the feedback :) 1 big reason why is testing, the moment you have network calls being made upon instantiation, the mocking becomes quite painful and on...
can you share your `requirements.txt`? I expect you have another package included like `keycloak` or `keycloak-client`. These packages collide with `python-keycloak`, see f.e. https://github.com/marcospereirampj/python-keycloak/issues/559
This is expected based on the default parameters given by the Keycloak's admin REST API, see https://www.keycloak.org/docs-api/latest/rest-api/index.html#_groups. The `GET /admin/realms/{realm}/groups` has `briefRepresentation` set to true by default, while `GET /admin/realms/{realm}/groups/{group-id}/children`...
Hi @dawsarjomaa007 Thanks for the suggestion! As far as I'm aware, right now it is not possible to easily set the connection pool size. It would only be possible by...
Hi @dawsarjomaa007 I have reviewed the PR and suggested a few changes, thus right now waiting for their implementation by the creator of the PR. Feel free to take over...
This is a consequence of changes in https://github.com/marcospereirampj/python-keycloak/pull/566, which removed the automatic fetching of the token upon KeycloakAdmin initialization. So from then on, when you instantiate a KeycloakAdmin class, the...
I'm also going to add that I agree with you @bclements and @RKN01011, this is not the best UX we are experiencing right now. I think it can be easily...
Actually, after going through the code again, I've just realized that this is already implemented. What you want to use is the parameter `user_realm_name`, which specifies which realm the user...
You should be able to use the `get_users` method, f.e. if you want to find a user with custom attribute key "my-custom-attr-1" having a value "my-value", you could do ```...
Hi @althaf004 What specific IdP details do you wish to add? Usually, data from external IdPs are propagated to keycloak users via IdP mappers, where you can decide the logic...