2 个版本

0.8.2 2020年1月1日
0.8.1 2020年1月1日

#2261 in 网页开发


3 个 Crates 中使用 (通过 telegram-bot-async)

MIT 许可证

145KB
3.5K SLoC

Rust Telegram Bot 库

Build Status License Crates.io

文档 最新 crates.io 版本

用于编写您自己的 Telegram 机器人的库。更多信息 这里。官方 API 这里

示例

这里是一个简单的示例(见 example/simple.rs

extern crate futures;
extern crate telegram_bot_async;
extern crate tokio;

use std::env;

use futures::{Stream, future::lazy};

use telegram_bot_async::*;

fn main() {
    tokio::runtime::current_thread::Runtime::new().unwrap().block_on(lazy(|| {
        let token = env::var("TELEGRAM_BOT_TOKEN").unwrap();
        let api = Api::new_default(token).unwrap();

        // Convert stream to the stream with errors in result
        let stream = api.stream().then(|mb_update| {
            let res: Result<Result<Update, Error>, ()> = Ok(mb_update);
            res
        });

        // Print update or error for each update.
        stream.for_each(move |update| {
            match update {
                Ok(update) => {
                    // If the received update contains a new message...
                    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.spawn(message.text_reply(format!(
                                "Hi, {}! You just wrote '{}'",
                                &message.from.first_name, data
                            )));
                        }
                    }
                }
                Err(_) => {}
            }

            Ok(())
        })
    })).unwrap();
}

examples 中可以找到更大的示例。

用法

此库可通过 crates.io 获得。为了使用它,只需将其添加到您的 Cargo.toml

telegram-bot-async = "0.7"

合作

当然!欢迎所有类型的贡献:创建问题、编写代码或提出建议。不知道从哪里开始?带有 up for grab 标签的问题非常适合入门。

依赖

~1–1.7MB
~39K SLoC