1 个不稳定版本
0.1.3 | 2023年12月6日 |
---|---|
0.1.2 |
|
0.1.1 |
|
0.1.0 |
|
#354 in 认证
26KB
567 行
rust-passport-azure-ad
将passport-azure-ad移植到Rust
安装
cargo add passport_azure_ad
使用方法
use passport_azure_ad::{
bearer_strategy::BearerStrategy,
types::LogLevel,
util,
};
use std::env;
use dotenvy::dotenv;
#[tokio::test]
async fn test_msal_bearer() {
dotenv().ok();
let token = env::var("BEARER_TOKEN")
.expect("'BEARER_TOKEN' is not defined")
.to_string();
let client_id = env::var("AZURE_AD_CLIENT_ID")
.expect("'AZURE_AD_CLIENT_ID' is not defined")
.to_string();
let tenant_id = env::var("AZURE_AD_TENANT_ID")
.expect("'AZURE_AD_TENANT_ID' is not defined")
.to_string();
let bearer = BearerStrategy::build(
Some(false), // allow_multi_audiences
None, // audience
Some(client_id), // client_id
None, // clock_skew
Some(util::open_id_config_url(tenant_id.clone())), // identity_metadata
Some(false), // ignore_expiration
Some(false), // is_b2c
Some(vec![util::issuer_url(tenant_id)]), // issuer
Some(LogLevel::Trace), // log_level
None, // policy_name
Some(vec![String::from("api-access")]), // scope
Some(true), // validate_issuer
)
.unwrap();
let validated = bearer.authenticate(token).await;
assert!(validated.is_ok());
}
许可证
依赖项
~8–24MB
~348K SLoC