1
0
telegram/unban_chat_member.go

29 lines
785 B
Go
Raw Normal View History

package telegram
import (
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
2017-10-06 07:55:54 +00:00
// UnbanChatMember unban a previously kicked user in a supergroup or channel. The
// user will not return to the group or channel automatically, but will be able
// to join via link, etc. The bot must be an administrator for this to work.
// Returns True on success.
func (bot *Bot) UnbanChatMember(chatID int64, user int) (bool, error) {
2017-12-13 14:07:57 +00:00
args := http.AcquireArgs()
defer http.ReleaseArgs(args)
2017-10-06 07:55:54 +00:00
args.Add("user_id", strconv.Itoa(user))
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-12-13 14:07:57 +00:00
resp, err := bot.request(nil, "unbanChatMember", 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
}