1

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?

ekad
  • 14,436
  • 26
  • 44
  • 46
horatio.mars
  • 559
  • 3
  • 9
  • 17

1 Answers1

0

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.

Lix
  • 47,311
  • 12
  • 103
  • 131