2个版本
0.9.1 | 2023年1月5日 |
---|---|
0.9.0 | 2022年12月3日 |
#989 in 异步
265KB
6K SLoC
Rust Telegram机器人库(分支)
文档 | 最新的crates.io版本 | master |
用于编写您自己的Telegram机器人的库。更多信息这里。官方API这里。
示例
这是一个简单的示例(见example/simple.rs
)
use std::env;
use futures::StreamExt;
use telegram_bot::*;
#[tokio::main]
async fn main() -> Result<(), Error> {
let token = env::var("TELEGRAM_BOT_TOKEN").expect("TELEGRAM_BOT_TOKEN not set");
let api = Api::new(token);
// Fetch new updates via long poll method
let mut stream = api.stream();
while let Some(update) = stream.next().await {
// If the received update contains a new message...
let update = update?;
if let UpdateKind::Message(message) = update.kind {
if let MessageKind::Text { ref data, .. } = message.kind {
// Print received text message to stdout.
println!("<{}>: {}", &message.from.first_name, data);
// Answer message with "Hi".
api.send(message.text_reply(format!(
"Hi, {}! You just wrote '{}'",
&message.from.first_name, data
)))
.await?;
}
}
}
Ok(())
}
您可以在examples
中找到更大的示例。
使用方法
此库可通过crates.io
获得。为了使用它,只需将以下内容添加到您的Cargo.toml
telegram-bot = "0.7"
此库允许您轻松地进行机器人的端到端测试:只需指定TELEGRAM_API_URL
环境变量以指向您的模拟Telegram测试服务器。使用tracing框架可以收集大量诊断信息,请参阅example/tracing.rs
)。
合作
欢迎!所有类型的贡献都受到欢迎:创建问题、编写代码或提出建议。不知道从哪里开始?带有标签的“up for grab”的问题都是良好的起点。
依赖项
~8–21MB
~327K SLoC