go>> tg>> 返回
项目作者: spyzhov

项目描述 :
Telegram Bot API
高级语言: Go
项目地址: git://github.com/spyzhov/tg.git
创建时间: 2019-06-21T10:59:42Z
项目社区:https://github.com/spyzhov/tg

开源协议:MIT License

下载


Telegram bot API on Golang

GoDoc

Implement golang interface for Telegram Bot API.

Implemented all methods up to: May 31, 2019 Bot API 4.3

API

All documentation about Bot.API you can find at API.md

Examples

All examples are at: example dir.

Generator

Generates API using generator.py: requirements listed at file, Python3.7 required.

Simple use

  1. package main
  2. import (
  3. "context"
  4. "fmt"
  5. . "github.com/spyzhov/tg"
  6. "os"
  7. "strconv"
  8. )
  9. func main() {
  10. bot := New(os.Getenv("TOKEN"))
  11. chatId, err := strconv.Atoi(os.Getenv("CHAT_ID"))
  12. if err != nil {
  13. panic(err)
  14. }
  15. user, err := bot.GetMe(context.Background())
  16. if err != nil {
  17. panic(err)
  18. }
  19. result, err := bot.SendMessage(context.Background(), &SendMessageRequest{
  20. ChatId: chatId,
  21. Text: "Hello, my name is " + user.Username,
  22. })
  23. if err != nil {
  24. panic(err)
  25. }
  26. fmt.Printf("%#v\n", result)
  27. if result.From != nil {
  28. fmt.Printf("From: %#v\n", result.From)
  29. }
  30. fmt.Printf("Chat: %#v\n", result.Chat)
  31. }