1
0
telegram/unban_chat_member.go
Maxim Lebedev 5674f77549
🎨 Format comments
2017-10-06 12:55:54 +05:00

28 lines
748 B
Go

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