Skip to content

Commit 1148dd4

Browse files
Fix README example
1 parent 53dd7a8 commit 1148dd4

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

README.md

+10-16
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,15 @@ Here is a simple example (see [`example/simple.rs`](https://github.com/LukasKalb
1515
extern crate telegram_bot;
1616

1717
use telegram_bot::*;
18-
use std::env;
1918

2019
fn main() {
21-
// Fetch environment variable with bot token
22-
let token = match env::var("TELEGRAM_BOT_TOKEN") {
23-
Ok(tok) => tok,
24-
Err(e) =>
25-
panic!("Environment variable 'TELEGRAM_BOT_TOKEN' missing! {}", e),
26-
};
27-
2820
// Create bot, test simple API call and print bot information
29-
let mut bot = Bot::new(token);
30-
println!("getMe: {:?}", bot.get_me());
21+
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
22+
println!("getMe: {:?}", api.get_me());
23+
let mut listener = api.listener(ListeningMethod::LongPoll(None));
3124

3225
// Fetch new updates via long poll method
33-
let res = bot.long_poll(None, |bot, u| {
26+
let res = listener.listen(|u| {
3427
// If the received update contains a message...
3528
if let Some(m) = u.message {
3629
let name = m.from.first_name;
@@ -42,11 +35,11 @@ fn main() {
4235
println!("<{}> {}", name, t);
4336

4437
if t == "/exit" {
45-
return Err(Error::UserInterrupt);
38+
return Ok(ListeningAction::Stop);
4639
}
4740

4841
// Answer message with "Hi"
49-
try!(bot.send_message(
42+
try!(api.send_message(
5043
m.chat.id(),
5144
format!("Hi, {}! You just wrote '{}'", name, t),
5245
None, None, None));
@@ -56,14 +49,15 @@ fn main() {
5649
}
5750

5851
// If none of the "try!" statements returned an error: It's Ok!
59-
Ok(())
52+
Ok(ListeningAction::Continue)
6053
});
6154

6255
// When the method `long_poll` returns, its due to an error. Check it here.
6356
if let Err(e) = res {
6457
println!("An error occured: {}", e);
6558
}
6659
}
60+
6761
```
6862
You can find a bigger example in the `examples` folder.
6963

@@ -92,5 +86,5 @@ Please submit pull request against the `dev` branch, unless all changes are just
9286
- [x] "getUpdates" and `long_poll`
9387
- [ ] "setWebhook" and `listen`
9488
- [ ] sending files ("sendAudio", "sendDocument", ...)
95-
- [ ] More good documentation and examples
96-
- [ ] Maybe think about multithreading stuff
89+
- [x] More good documentation and examples
90+
- [x] Maybe think about multithreading stuff

0 commit comments

Comments
 (0)