Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is is possible to list the members of a Facebook group using the Facebook API? If yes, how?

share|improve this question

4 Answers

up vote 7 down vote accepted

Yes - use the members connection. Check out the Group reference on the Graph API.

share|improve this answer

First you need an access token. I'd recommend this article:

http://benbiddington.wordpress.com/2010/04/23/facebook-graph-api-getting-access-tokens/

If you want a permanent access token you must ask for the "offline_access" extended permission on getting it.

After that, it's just a matter of issuing a REST API call:

https://graph.facebook.com/[GROUPID]/members?access_token=[ACCESSTOKEN]

and you'll receive a JSON list of all the members of that group. Very handy!

share|improve this answer

Check the members link on

http://developers.facebook.com/docs/reference/api/group

If you click on that link it will generate a oauth token for you, then simply substitute the groupid

It will only return 500 members though

share|improve this answer
 Request request = new Request(Session.getActiveSession(),
                groupId+"/members", bundle,
                HttpMethod.GET, new Request.Callback() {}
Request.executeBatchAsync(request);
share|improve this answer

protected by Community Feb 21 at 15:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.