@@ -15,22 +15,15 @@ Here is a simple example (see [`example/simple.rs`](https://github.com/LukasKalb
15
15
extern crate telegram_bot;
16
16
17
17
use telegram_bot :: * ;
18
- use std :: env;
19
18
20
19
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
-
28
20
// 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 ));
31
24
32
25
// Fetch new updates via long poll method
33
- let res = bot . long_poll ( None , | bot , u | {
26
+ let res = listener . listen ( | u | {
34
27
// If the received update contains a message...
35
28
if let Some (m ) = u . message {
36
29
let name = m . from. first_name;
@@ -42,11 +35,11 @@ fn main() {
42
35
println! (" <{}> {}" , name , t );
43
36
44
37
if t == " /exit" {
45
- return Err ( Error :: UserInterrupt );
38
+ return Ok ( ListeningAction :: Stop );
46
39
}
47
40
48
41
// Answer message with "Hi"
49
- try ! (bot . send_message (
42
+ try ! (api . send_message (
50
43
m . chat. id (),
51
44
format! (" Hi, {}! You just wrote '{}'" , name , t ),
52
45
None , None , None ));
@@ -56,14 +49,15 @@ fn main() {
56
49
}
57
50
58
51
// If none of the "try!" statements returned an error: It's Ok!
59
- Ok (() )
52
+ Ok (ListeningAction :: Continue )
60
53
});
61
54
62
55
// When the method `long_poll` returns, its due to an error. Check it here.
63
56
if let Err (e ) = res {
64
57
println! (" An error occured: {}" , e );
65
58
}
66
59
}
60
+
67
61
```
68
62
You can find a bigger example in the ` examples ` folder.
69
63
@@ -92,5 +86,5 @@ Please submit pull request against the `dev` branch, unless all changes are just
92
86
- [x] "getUpdates" and ` long_poll `
93
87
- [ ] "setWebhook" and ` listen `
94
88
- [ ] 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