Purpose built as OAuth client for Microsoft Graph and the graph-rs-sdk project. This project can however be used outside graph-rs-sdk as an OAuth client for Microsoft Identity Platform or by using graph-rs-sdk.
For async:
toml
graph-oauth = "1.0.0"
tokio = { version = "1.25.0", features = ["full"] }
For blocking:
toml
graph-oauth = "1.0.0"
See the project on GitHub.
For more extensive examples and explanations see the OAuth Examples in the examples/oauth directory on GitHub.
```rust use graph_oauth::oauth::{AccessToken, OAuth};
fn main() {
let mut oauth = OAuth::new();
oauth
.clientid("
let mut request = oauth.build().authorization_code_grant();
// Opens the default browser.
let _ = request.browser_authorization().open();
// The access code will be appended to the url on redirect. Pass
// this code to the OAuth instance:
oauth.access_code("<ACCESS CODE>");
// Perform an authorization code grant request for an access token:
let response = request.access_token().send().await?;
println!("{response:#?}");
if response.status().is_success() {
let mut access_token: AccessToken = response.json().await?;
// Option<&JsonWebToken>
let jwt = access_token.jwt();
println!("{jwt:#?}");
oauth.access_token(access_token);
// If all went well here we can print out the OAuth config with the Access Token.
println!("{:#?}", &oauth);
} else {
// See if Microsoft Graph returned an error in the Response body
let result: reqwest::Result<serde_json::Value> = response.json().await;
match result {
Ok(body) => println!("{body:#?}"),
Err(err) => println!("Error on deserialization:\n{err:#?}"),
}
}
} ```