1
0
telegram/get_chat_member.go

25 lines
628 B
Go
Raw Normal View History

2017-09-04 19:47:27 +00:00
package telegram
import (
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// GetChatMember get information about a member of a chat. Returns a ChatMember object on success.
func (bot *Bot) GetChatMember(chatID int64, user int) (*ChatMember, error) {
2017-09-04 19:47:27 +00:00
var args http.Args
args.Add("user_id", strconv.Itoa(user)) // Unique identifier of the target user
args.Add("chat_id", strconv.FormatInt(chatID, 10))
2017-09-04 19:47:27 +00:00
2017-09-05 09:20:10 +00:00
resp, err := bot.request(nil, "getChatMember", &args)
2017-09-04 19:47:27 +00:00
if err != nil {
return nil, err
}
var data ChatMember
err = json.Unmarshal(*resp.Result, &data)
return &data, err
}