1. 首页
  2. 数据库
  3. 其它
  4. tgo:用Golang编写的Telegram bot API客户端 源码

tgo:用Golang编写的Telegram bot API客户端 源码

上传者: 2021-02-10 02:40:17上传 ZIP文件 11.43KB 热度 19次
用Golang编写的Telegram bot API客户端 GetUpdatesChan示例 package main import "gopkg.in/devalecs/tgo.v1" func main () { c := tgo . NewClient ( "yourTelegramBotAPIToken" ) updatesChan := c . GetUpdatesChan (tgo. GetUpdatesParams { Timeout : 60 , }) for update := range updatesChan { if update . Message
用户评论