Hardik Joshi
Hardik Joshi

Reputation: 849

Get all pictures and related comments from a Facebook Group page

I need to get all picture and their related comments which has been made to a particular facebook group page. How can I achieve this through facebook api?

Upvotes: 1

Views: 787

Answers (1)

Claudiu
Claudiu

Reputation: 3261

Sure, you just need to make a request to graph.facebook.com/GROUP_ID/feed

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

The Graph API is really easy to figure out. You have the base url (graph.facebook.com) and then you can make requests to any object on facebook (user, page, group, checkin, etc) by just calling graph.facebook.com/OBJECT_ID. It's all on the front page: https://developers.facebook.com/docs/reference/api/

Upvotes: 2

Related Questions