use azure_sdk_auth_aad::*; use std::error::Error; use url::Url; #[tokio::main] async fn main() -> Result<(), Box> { let sub_id = std::env::var("AZURE_SUBSCRIPTION_ID")?; let creds = AzureCliCredential {}; let res = creds .get_token("https://management.azure.com/") .await .unwrap(); println!("Azure cli response == {:?}", res); // Let's enumerate the Azure storage accounts // in the subscription. Note: this way of calling the REST API // will be different (and easier) using other Azure Rust SDK // crates, this is just an example. let url = Url::parse(&format!( "https://management.azure.com/subscriptions/{}/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", sub_id ))?; let resp = reqwest::Client::new() .get(url) .header("Authorization", format!("Bearer {}", res.token.secret())) .send() .await? .text() .await?; println!("\n\nresp {:?}", resp); Ok(()) }