tgo:用Golang编写的Telegram bot API客户端 源码
用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
用户评论