1
0
telegram/export_chat_invite_link.go

28 lines
785 B
Go
Raw Normal View History

package telegram
import json "github.com/pquerna/ffjson/ffjson"
2017-09-04 20:54:28 +00:00
type ExportChatInviteLinkParameters struct {
// Unique identifier for the target chat
ChatID int64 `json:"chat_id"`
}
2017-10-06 07:55:54 +00:00
// ExportChatInviteLink export an invite link to a supergroup or a channel. The
// bot must be an administrator in the chat for this to work and must have the
// appropriate admin rights. Returns exported invite link as String on success.
func (bot *Bot) ExportChatInviteLink(chatID int64) (string, error) {
dst, err := json.Marshal(&ExportChatInviteLinkParameters{ChatID: chatID})
if err != nil {
return "", err
}
2018-04-12 11:58:05 +00:00
resp, err := bot.request(dst, MethodExportChatInviteLink)
if err != nil {
2017-09-04 20:54:28 +00:00
return "", err
}
var data string
err = json.Unmarshal(*resp.Result, &data)
return data, err
}