1
0
telegram/unpin_chat_message.go

32 lines
907 B
Go
Raw Normal View History

package telegram
import (
2017-09-04 20:54:28 +00:00
"errors"
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// 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(chat interface{}) (bool, error) {
var args http.Args
2017-09-04 20:54:28 +00:00
switch id := chat.(type) {
case int64: // Unique identifier for the target chat...
args.Add("chat_id", strconv.FormatInt(id, 10))
case string: // ...or username of the target supergroup or channel (in the format @supergroupusername)
args.Add("chat_id", id)
default:
2017-09-04 20:54:28 +00:00
return false, errors.New(errorInt64OrString)
}
2017-09-05 09:20:10 +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
}