2 releases
0.0.2 | Oct 17, 2024 |
---|---|
0.0.1 | Oct 17, 2024 |
#258 in Authentication
305 downloads per month
23KB
495 lines
keycloak-oauth
keycloak-oauth is a basic Rust library designed to facilitate seamless integration with Keycloak's OAuth2 authentication flows.
Currently only supports device authentication flow.
[!CAUTION] The flow currently temporarily caches a token on disk in
.temp_files/token.json
. This will be upgraded to libsecret in the future
Getting started
use keycloak_oauth::{ClientConfiguration, KeycloakClient, ClientError};
#[tokio::main]
async fn main() -> Result<(), ClientError> {
// Load configuration from environment variables or another source
let config = ClientConfiguration::from_env();
// Initialize the KeycloakClient
let keycloak_client = KeycloakClient::new(config);
// Authenticate and obtain the access token
let access_token = keycloak_client.verify_and_refresh_token().await?;
// Use the access token as needed
println!("Obtained Access Token: {}", access_token);
Ok(())
}
License
This project is licensed under the MIT License.
Dependencies
~10–23MB
~359K SLoC