1
0
telegram/get_chat.go

28 lines
696 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
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.
func (bot *Bot) GetChat(chatID int64) (*Chat, error) {
dst, err := json.Marshal(&GetChatParameters{ChatID: chatID})
if err != nil {
return nil, err
}
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 {
return nil, err
}
var data Chat
err = json.Unmarshal(*resp.Result, &data)
return &data, err
}