9 个版本

使用旧的 Rust 2015

0.7.8 2019年5月17日
0.7.7 2018年11月23日

#bot-api 中排名 36

每月下载量 45
用于 telegram-bot-fork

MIT 许可证

145KB
4K SLoC

Rust Telegram Bot 库

Build Status License Crates.io

文档 最新的 crates.io 版本

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

示例

以下是一个简单的示例(见 example/simple.rs

extern crate futures;
extern crate telegram_bot_fork;
extern crate tokio;

use std::env;

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

use telegram_bot_fork::*;

fn main() {
    tokio::runtime::current_thread::Runtime::new().unwrap().block_on(lazy(|| {
        let token = env::var("TELEGRAM_BOT_TOKEN").unwrap();
        let api = Api::new(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-fork = "0.7"

合作

请!欢迎所有类型的贡献:创建问题、编写一些代码或提出建议。不知道从哪里开始?标记为 up for grab 的问题都是很好的开始。

依赖项

~3.5–5.5MB
~112K SLoC