forked from OvyFlash/telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolling_echo.go
73 lines (59 loc) · 1.81 KB
/
polling_echo.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"log"
"time"
api "github.com/OvyFlash/telegram-bot-api"
)
// func main() { polling_echo() }
func polling_echo() {
bot, err := api.NewBotAPI("MyAwesomeBotToken")
if err != nil {
panic(err)
}
bot.Debug = true
log.Printf("Authorized on account %s", bot.Self.UserName)
updateConfig := api.NewUpdate(0)
updateConfig.Timeout = 60
// Empty list allows all updates excluding
// UpdateTypeChatMember, UpdateTypeMessageReaction and UpdateTypeMessageReactionCount
updateConfig.AllowedUpdates = []string{
api.UpdateTypeMessage,
api.UpdateTypeEditedMessage,
api.UpdateTypeChannelPost,
api.UpdateTypeEditedChannelPost,
api.UpdateTypeBusinessConnection,
api.UpdateTypeBusinessMessage,
api.UpdateTypeEditedBusinessMessage,
api.UpdateTypeDeletedBusinessMessages,
api.UpdateTypeMessageReaction,
api.UpdateTypeMessageReactionCount,
api.UpdateTypeInlineQuery,
api.UpdateTypeChosenInlineResult,
api.UpdateTypeCallbackQuery,
api.UpdateTypeShippingQuery,
api.UpdateTypePreCheckoutQuery,
api.UpdateTypePurchasedPaidMedia,
api.UpdateTypePoll,
api.UpdateTypePollAnswer,
api.UpdateTypeMyChatMember,
api.UpdateTypeChatMember,
api.UpdateTypeChatJoinRequest,
api.UpdateTypeChatBoost,
api.UpdateTypeRemovedChatBoost,
}
updatesChannel := bot.GetUpdatesChan(updateConfig)
// Optional: wait for updates and clear them if you don't want to handle
// a large backlog of old messages
time.Sleep(time.Millisecond * 500)
updatesChannel.Clear()
for update := range updatesChannel {
if update.Message == nil {
continue
}
log.Printf("[%s] %s", update.Message.From.UserName, update.Message.Text)
// Send an echo reply to the message
msg := api.NewMessage(update.Message.Chat.ID, update.Message.Text)
msg.ReplyParameters.MessageID = update.Message.MessageID
bot.Send(msg)
}
}