1
0
telegram/set_chat_title.go

30 lines
835 B
Go
Raw Normal View History

2017-09-04 20:28:24 +00:00
package telegram
import (
2017-09-04 20:54:28 +00:00
"strconv"
2017-09-04 20:28:24 +00:00
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
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) {
2017-09-04 20:28:24 +00:00
var args http.Args
2017-10-06 07:55:54 +00:00
args.Add("title", title)
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-09-04 20:28:24 +00:00
2017-09-05 09:20:10 +00:00
resp, err := bot.request(nil, "setChatTitle", &args)
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
}