1
0
telegram/get_chat.go

27 lines
653 B
Go
Raw Normal View History

2017-09-04 20:34:22 +00:00
package telegram
import (
2017-09-04 20:54:28 +00:00
"strconv"
2017-09-04 20:34:22 +00:00
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
2017-10-06 07:55:54 +00:00
// GetChat get up to date information about the chat (current name of the user
// for one-on-one conversations, current username of a user, group or channel,
// etc.). Returns a Chat object on success.
func (bot *Bot) GetChat(chatID int64) (*Chat, error) {
2017-12-13 14:07:57 +00:00
args := http.AcquireArgs()
defer http.ReleaseArgs(args)
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-09-04 20:34:22 +00:00
2017-12-13 14:07:57 +00:00
resp, err := bot.request(nil, "getChat", args)
2017-09-04 20:34:22 +00:00
if err != nil {
return nil, err
}
var data Chat
err = json.Unmarshal(*resp.Result, &data)
return &data, err
}