Keycloak Admin REST API
Legal
Dual-licensed under MIT or the UNLICENSE.
Features
Implements Keycloak Admin REST API version 12.
Usage
Add dependency to Cargo.toml:
[dependencies]
keycloak = "13"
use keycloak::{
types::*,
{KeycloakAdmin, KeycloakAdminToken},
};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let url = "http://localhost:9080";
let client = reqwest::Client::new();
let admin_token = KeycloakAdminToken::acquire(url, "admin", "password", &client).await?;
eprintln!("{:?}", admin_token);
let admin = KeycloakAdmin::new(url, admin_token, client);
admin
.post(RealmRepresentation {
realm: Some("test".into()),
..Default::default()
})
.await?;
admin
.realm_users_post(
"test",
UserRepresentation {
username: Some("user".into()),
..Default::default()
},
)
.await?;
let users = admin
.realm_users_get(
"test", None, None, None, None, None, None, None, None, None, None, None, None, None,
)
.await?;
eprintln!("{:?}", users);
let id = users
.iter()
.find(|u| u.username == Some("user".into()))
.unwrap()
.id
.as_ref()
.unwrap()
.to_string();
admin
.realm_users_with_id_delete("test", id.as_str())
.await?;
admin.realm_delete("test").await?;
Ok(())
}
Version agreement
If we have x.y.z version of keycloak, our package version would be x.y.(z * 100 + v) there v is a minor
fix version to official x.y.z version.
Example: official version 13.0.1 is 13.0.100 for crate version.