Doc

https://core.telegram.org/bots/api

尝试

用 Go 语言做了一个 telegram 的 bot . 用来简单实现对话(复读)。

获得 telegram bot token

和 BotFather 交谈即可
中途需要设置一下名字和查找路径
image.png

go get

首先获取 api 包

  1. go get -u github.com/go-telegram-bot-api/telegram-bot-api

code

  1. package main
  2. import (
  3. "log"
  4. "os"
  5. "github.com/go-telegram-bot-api/telegram-bot-api"
  6. )
  7. func main() {
  8. bot, err := tgbotapi.NewBotAPI(os.Getenv("TELEGRAM_APITOKEN"))
  9. if err != nil {
  10. log.Panic(err)
  11. }
  12. bot.Debug = true
  13. log.Printf("Authorized on account %s", bot.Self.UserName)
  14. u := tgbotapi.NewUpdate(0)
  15. u.Timeout = 60
  16. updates, err := bot.GetUpdatesChan(u)
  17. for update := range updates {
  18. if update.Message == nil { // ignore any non-Message Updates
  19. continue
  20. }
  21. msg := tgbotapi.NewMessage(update.Message.Chat.ID, update.Message.Text)
  22. msg.ReplyToMessageID = update.Message.MessageID
  23. if _, err := bot.Send(msg); err != nil {
  24. log.Panic(err)
  25. }
  26. }
  27. }

Run

注意 终端需要能访问 telegram 的 API
image.png

效果

image.png