-3

Is it possible to get the member count of closed Facebook groups?

ekad
  • 14,436
  • 26
  • 44
  • 46
TorbenL
  • 1,219
  • 1
  • 11
  • 15

1 Answers1

1

This isn't possible you can only retrieve 500 max currently via Graph API (https://graph.facebook.com/GROUP_ID/members)

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

Via FQL you can retrieve up to 5000 I believe

select gid, uid from group_member where gid = GROUP_ID

https://developers.facebook.com/docs/reference/api/group/
https://developers.facebook.com/docs/reference/fql/group_member/

phwd
  • 19,975
  • 5
  • 50
  • 78