1
0
telegram/set_chat_title.go
2017-10-05 16:31:53 +05:00

27 lines
866 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package telegram
import (
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// 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.
//
// 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) {
var args http.Args
args.Add("title", title) // New chat title, 1-255 characters
args.Add("chat_id", strconv.FormatInt(chatID, 10))
resp, err := bot.request(nil, "setChatTitle", &args)
if err != nil {
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}