10个版本
0.2.2 | 2024年6月5日 |
---|---|
0.2.1 | 2024年3月19日 |
0.2.0 | 2023年10月13日 |
0.1.7 | 2023年7月25日 |
0.1.1 | 2023年1月17日 |
#292 在 认证
每月81次下载
54KB
1K SLoC
auth0_client
这个crate允许与Auth0 API交互。它仍在开发中,因此缺少许多功能。
安装
将此行添加到您的 Cargo.toml
[dependencies]
auth0_client = "0.1.0"
使用概述
let mut client = Auth0Client::new(
"client_id",
"client_secret",
"http://domain.com",
"http://audience.com",
);
client.authenticate().await?;
let mut payload =
CreateUserPayload::from_connection("Username-Password-Authentication");
payload.email = Some("[email protected]".to_owned());
payload.password = Some("password123456789!".to_owned());
let new_user = client.create_user(&payload).await;
依赖关系
~8–22MB
~350K SLoC