Azure OAuth2 helper crate for the unofficial Microsoft Azure SDK for Rust. This crate is part of a collection of crates: for more information please refer to https://github.com/azure/azure-sdk-for-rust. This crate provides mechanisms for several ways to authenticate against Azure
For example, to authenticate using the client credential flow, you can do the following:
```rust use azureidentity::clientcredentials_flow; use oauth2::{ClientId, ClientSecret}; use url::Url;
use std::env; use std::error::Error;
async fn main() -> Result<(), Box
let client = reqwest::Client::new();
// This will give you the final token to use in authorization.
let token = client_credentials_flow::perform(
client,
&client_id,
&client_secret,
&["https://management.azure.com/"],
&tenant_id,
)
.await?;
Ok(())
} ```
The supported authentication flows are: * Authorization code flow. * Client credentials flow. * Device code flow.
This crate also includes utilities for handling refresh tokens and accessing token credentials from many different sources.
To set this crate as a dependency, add this to your Cargo.toml
toml
[dependencies]
azure_identity = { version = "0.1.0", git = "https://github.com/Azure/azure-sdk-for-rust" }