#telegram-bot #bot-api #telegram-api #send-message #tokio

TeleApi

帮助Telegram机器人程序员的软件包

3个版本

0.1.4 2023年11月18日
0.1.3 2023年11月18日
0.1.2 2023年11月16日
0.1.1 2023年11月15日
0.1.0 2023年11月15日

#1795 in Web编程

每月下载量26次

MIT许可证

10KB
281

Tele Api

使用示例

use TeleApi; 

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    let bot = TeleApi::TeleApi::new(""); // Telegram bot token

    let chat_id: i64 = 123456789;
    let text = "Hi TeleApi";

    bot.sendMessage(params!("chat_id" => chat_id, "text" => text)).await?;

    Ok(())
}

社区

依赖项

~6–18MB
~275K SLoC