1
0
Fork 0

Added getChatMembersCount method

This commit is contained in:
Maxim Lebedev 2017-09-05 01:38:29 +05:00
parent cdf552a672
commit 856d913c64
No known key found for this signature in database
GPG Key ID: F8978F46FF0FFA4F
1 changed files with 28 additions and 0 deletions

28
get_chat_members_count.go Normal file
View File

@ -0,0 +1,28 @@
package telegram
import (
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// GetChatMembersCount get the number of members in a chat. Returns Int on success.
func (bot *Bot) GetChatMembersCount(chat interface{}) (int, error) {
var args http.Args
switch id := chatID.(type) {
case int64: // Unique identifier for the target chat...
args.Add("chat_id", strconv.FormatInt(id, 10))
case string: // ...or username of the target supergroup or channel (in the format @channelusername)
args.Add("chat_id", id)
default:
return nil, errors.New(errorInt64OrString)
}
resp, err := bot.get("getChatMembersCount", &args)
if err != nil {
return nil, err
}
var data int
err = json.Unmarshal(*resp.Result, &data)
return data, err
}