如何获得会员?使用 facebook 中的组 id 获取信息?
这里有一个A组,我想提取成员的组信息作为训练数据集。
例如,组 A 有 400 名成员的列表,每个成员加入多个不同的组。
如何获取群组成员信息?只用群id就可以获取成员信息吗?
Here is a group A. I want to extract the members' group information as the training data set.
For example, group A has a list of 400 members and each member joins a number of different groups.
How can I get the members' information from the group? Can I get members' information by simply using the group id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用图形 API 查询组端点...
https://graph.faecbook.com/GROUP_ID/members
这将返回(引用 Facebook 文档):
您必须使用有效的访问令牌,并且如果您正在管理该组,则只能检索一个。
You can query the group endpoint using the graph api...
https://graph.faecbook.com/GROUP_ID/members
This will return (quoting facebook docuemntation) :
You will have to use a valid access token and you will only be able to retrieve one if you are administering the group.