forked from OvyFlash/telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolling_inline_query.go
43 lines (32 loc) · 954 Bytes
/
polling_inline_query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package main
import (
"log"
api "github.com/OvyFlash/telegram-bot-api"
)
// func main() { polling_inline_query() }
func polling_inline_query() {
bot, err := api.NewBotAPI("MyAwesomeBotToken") // create new bot
if err != nil {
panic(err)
}
log.Printf("Authorized on account %s", bot.Self.UserName)
updateConfig := api.NewUpdate(0)
updateConfig.Timeout = 60
updatesChannel := bot.GetUpdatesChan(updateConfig)
for update := range updatesChannel {
if update.InlineQuery == nil { // if no inline query, skip update
continue
}
article := api.NewInlineQueryResultArticle(update.InlineQuery.ID, "Echo", update.InlineQuery.Query)
article.Description = update.InlineQuery.Query
inlineConfig := api.InlineConfig{
InlineQueryID: update.InlineQuery.ID,
IsPersonal: true,
CacheTime: 0,
Results: []interface{}{article},
}
if _, err := bot.Request(inlineConfig); err != nil {
log.Println(err)
}
}
}