how to get members' info by using group id in facebook?

允我心安 提交于 2019-12-08 05:43:49

问题


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?


回答1:


You can query the group endpoint using the graph api...

https://graph.faecbook.com/GROUP_ID/members

This will return (quoting facebook docuemntation) :

All of the users who are members of this group (can only currently return the first 500 members).

You will have to use a valid access token and you will only be able to retrieve one if you are administering the group.



来源:https://stackoverflow.com/questions/8116332/how-to-get-members-info-by-using-group-id-in-facebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!