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

10,443

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.

Share:
10,443

Related videos on Youtube

user63898
Author by

user63898

developer

Updated on June 04, 2022

Comments

  • user63898
    user63898 over 1 year

    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.

  • szajmon
    szajmon over 10 years
    GROUP_ID/feed does not seem to work now. it returns an empty data array for every public group I've tried. do you know about any changes regarding this request?

Related