all repos — telegram-bot-api @ def5c3f6c93386674489b85a2c7af19e5247413a

Golang bindings for the Telegram Bot API

Add exportChatInviteLink method
Mikhail Markov markov.mikhail@gmail.com
Mon, 17 Jul 2017 20:48:51 +0300
commit

def5c3f6c93386674489b85a2c7af19e5247413a

parent

ebe7b8254e1592d3701010dc4f927a87b3559397

1 files changed, 18 insertions(+), 0 deletions(-)

jump to
M bot.gobot.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 +}