1
0
telegram/unpin_chat_message.go

27 lines
664 B
Go
Raw Normal View History

package telegram
import (
2017-09-04 20:54:28 +00:00
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
2017-10-06 07:55:54 +00:00
// UnpinChatMessage unpin a message in a supergroup chat. The bot must be an
// administrator in the chat for this to work and must have the appropriate admin
// rights. Returns True on success.
func (bot *Bot) UnpinChatMessage(chatID int64) (bool, error) {
2017-12-13 14:07:57 +00:00
args := http.AcquireArgs()
defer http.ReleaseArgs(args)
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-12-13 14:07:57 +00:00
resp, err := bot.request(nil, "unpinChatMessage", args)
if err != nil {
2017-09-04 20:54:28 +00:00
return false, err
}
var data bool
err = json.Unmarshal(*resp.Result, &data)
return data, err
}