Andreas Abraham
Andreas Abraham
As far as I understood keycloak you either have a confidential client and use client_id+secret or a public client and use username+password. Thus for me this sounds reasonable.
This is not a client, it is a python wrapper for keycloak. If you have keycloak running you should be able to configure it via python scripts (as in the...
No. Please close.
Yes, you can just use regular user credentials (username/password).
Keycloak API says that search is "A String contained in username, first or last name, or email". I guess that the search for id is directly using the endpoint to...
You are creating a new role with that, not a new user (with admin rights). Use `create_user()` and `assign_realm_roles()`.
How about using the current mechanism to fetch pages of 100 and return them using a generator. This way data is only retrieved when needed and no max needs to...
Either that or adopt as described in the API to be able to use the array of actions, i.e. `data={'requiredActions':payload}`
Example is impossible to follow without the file content ("example-authz-config.json").
Did you mean adding POST for the endpoint `/{realm}/authentication/config/{id}`? I believe the GET/PUT is already available via `keycloak_admin.get_authenticator_config()` and `update_authenticator_config()`