我正在使用“ telepot”库创建机器人,但我没有找到从聊天/群组中获取消息/成员的方法
#getting count users
own_group = 'some_id'
group_link_tmp = '@{}'
group_link = group_link_tmp.format(search_group)
count_users = bot.getChatMembersCount(group_link)
print count_users
# getting chat info
chat = bot.getChat(group_link)
print(chat)
# getting members/messages
# ...