1
0
telegram/set_chat_title.go

37 lines
1021 B
Go
Raw Normal View History

2017-09-04 20:28:24 +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
// SetChatTitleParameters represents data for SetChatTitle method.
type SetChatTitleParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
Title string `json:"title"`
}
2017-09-04 20:28:24 +00:00
2017-10-06 07:55:54 +00:00
// SetChatTitle change the title of a chat. Titles can't be changed for private
// chats. The bot must be an administrator in the chat for this to work and must
// have the appropriate admin rights. Returns True on success.
2017-09-04 20:28:24 +00:00
//
2017-10-06 07:55:54 +00:00
// Note: In regular groups (non-supergroups), this method will only work if the
// 'All Members Are Admins' setting is off in the target group.
func (bot *Bot) SetChatTitle(chatID int64, title string) (bool, error) {
dst, err := json.Marshal(&SetChatTitleParameters{
ChatID: chatID,
Title: title,
})
if err != nil {
return false, err
}
2017-09-04 20:28:24 +00:00
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodSetChatTitle)
2017-09-04 20:28:24 +00:00
if err != nil {
2017-09-04 20:54:28 +00:00
return false, err
2017-09-04 20:28:24 +00:00
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}