Add exportChatInviteLink method
Mikhail Markov markov.mikhail@gmail.com
Mon, 17 Jul 2017 20:48:51 +0300
1 files changed,
18 insertions(+),
0 deletions(-)
jump to
M
bot.go
→
bot.go
@@ -834,3 +834,21 @@ bot.debugLog(config.method(), v, nil)
return bot.MakeRequest(config.method(), v) } + +// GetInviteLink get InviteLink for a chat +func (bot *BotAPI) GetInviteLink(config ChatConfig) (string, error) { + v := url.Values{} + + if config.SuperGroupUsername == "" { + v.Add("chat_id", strconv.FormatInt(config.ChatID, 10)) + } else { + v.Add("chat_id", config.SuperGroupUsername) + } + + resp, err := bot.MakeRequest("exportChatInviteLink", v) + + var inviteLink string + err = json.Unmarshal(resp.Result, &inviteLink) + + return inviteLink, err +}