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.

After trying to find a reference to an API/tutorial to such thing, I have come here.

I would like to scan a specific group wall, pulling all posts from it, with PHP or C#.

In the end, I would like to have a nested-array containing each posts, with the next details:

  • An array of the related comments
  • Likes
  • Views

Obviously, I don't ask for any code, only a reference to the related API I will need to use.

EDIT: If this is not possible, should I consider cURL as an option?

share|improve this question

1 Answer

up vote 2 down vote accepted

The /GROUP_ID/feed endpoint contains all this data.

Example: https://developers.facebook.com/tools/explorer?method=GET&path=195466193802264%2Ffeed

Note: The "viewed by" feature is not available through an API.

share|improve this answer
Thank you for your help. Am I able to request all the entries, and not 25 of them each time? – Guy David Dec 12 '12 at 6:45
1  

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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