#telegram #axum #authorization

telegram-authorizer

Telegram认证器,适用于Axum

2个版本

0.2.0 2024年7月11日
0.1.1 2024年8月6日
0.1.0 2024年7月9日

#277 in 认证

Download history 151/week @ 2024-07-05 49/week @ 2024-07-12 1/week @ 2024-07-26 97/week @ 2024-08-02

每月下载量:213

MIT许可证

8KB
150

telegram-authorizer

Telegram 小程序认证层,适用于Axum。

Rust Crates.io

用法

路由器

...
Router::new()
    .route("/", get(login))
    .layer(telegram_authorizer::AuthorizationLayer(bot_token));`
...

处理器

use telegram_authorizer::TelegramUser;

pub async fn login(TelegramUser(id): TelegramUser) -> impl IntoResponse {
    tracing::info!("user: {:?}", id);
    ...
}

客户端

应将 initData 作为查询字符串发送。

依赖项

~11–20MB
~362K SLoC