Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can i get facebook group wall posts , all of them via api

I am member of a Facebook group and I would like to archive all the wall posts made from day 1 until today.

Can this be done via API get all of them ? If yes and how ? (I would like to get Everything like Links, Photos, and likes, even comments made on each post.

like image 753
user63898 Avatar asked Jan 24 '11 09:01

user63898


1 Answers

You should be able to obtain the wall posts via the GraphAPI at this URL:

https://graph.facebook.com/{OBJECT_ID}/feed?access_token=...

Replace {OBJECT_ID} with the ID for your group.

See the Facebook Documentation for more details.

like image 199
Frazell Thomas Avatar answered Oct 25 '22 14:10

Frazell Thomas