1
0
Fork 0
telegram/unban.go

34 lines
901 B
Go
Raw Normal View History

package telegram
2018-04-19 13:02:15 +00:00
// UnbanChatMemberParameters represents data for UnbanChatMember method.
type UnbanChatMemberParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
UserID int `json:"user_id"`
}
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.
2019-07-26 10:09:49 +00:00
func (bot *Bot) UnbanChatMember(chatID int64, userID int) (bool, error) {
2019-07-23 13:45:57 +00:00
params := UnbanChatMemberParameters{
ChatID: chatID,
UserID: userID,
2019-07-23 13:45:57 +00:00
}
2019-07-24 09:34:55 +00:00
dst, err := parser.Marshal(&params)
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
}
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodUnbanChatMember)
if err != nil {
2019-07-26 10:09:49 +00:00
return false, err
}
2019-07-26 10:09:49 +00:00
var ok bool
2019-07-24 09:34:55 +00:00
err = parser.Unmarshal(resp.Result, &ok)
2019-07-26 10:09:49 +00:00
return ok, err
}