1
0
telegram/get_chat.go

29 lines
735 B
Go
Raw Normal View History

2017-09-04 20:34:22 +00:00
package telegram
import json "github.com/pquerna/ffjson/ffjson"
2017-09-04 20:54:28 +00:00
2018-04-19 13:02:15 +00:00
// GetChatParameters represents data for GetChat method.
type GetChatParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
}
2017-09-04 20:34:22 +00:00
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.
2018-08-21 11:05:04 +00:00
func (bot *Bot) GetChat(chatID int64) (chat *Chat, err error) {
dst, err := json.Marshal(&GetChatParameters{ChatID: chatID})
if err != nil {
2018-08-21 11:05:04 +00:00
return
}
2017-09-04 20:34:22 +00:00
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodGetChat)
2017-09-04 20:34:22 +00:00
if err != nil {
2018-08-21 11:05:04 +00:00
return
2017-09-04 20:34:22 +00:00
}
2018-08-21 11:05:04 +00:00
chat = new(Chat)
err = json.Unmarshal(*resp.Result, chat)
return
2017-09-04 20:34:22 +00:00
}