There is no way to retrieve users from group now (30/08/2018). However, you can detect "follow" and "unfollow" events and save the changes to your database to keep track of users in each group.
I come to aware there is a getGroupMemberIds
in Node.js SDK to retrieve current members in a group. It will send a GET
request to https://api.line.me/v2/bot/group/{groupId}/members/ids
So you may use this to retrieve current group members.
- 0