How to show facebook group wall/posts on the website in a feed

18,659

Solution 1

You can programmatically access the wall posts of a group, but you'll need an access_token, acquired from a Facebook Connect button.

For an example, see the Graph Api Debug Console: group Born too soon

enter image description here

Solution 2

read this it will get you there https://developers.facebook.com/docs/graph-api/reference/v2.5/user/feed

$request = new FacebookRequest(
$session,
'GET',
'/groups/feed'
);
$response = $request->execute();
$graphObject = $response->getGraphObject();
// handle the result 
Share:
18,659
Admin
Author by

Admin

Updated on June 29, 2022

Comments

  • Admin
    Admin almost 2 years

    I am new here, I have read through all possible solutions to this and I can't find anything that answers our problem. I am an admin for a facebook group and we want to show the wall posts on a feed for the charities website. We have allowed anyone to see the posts on the facebook group settings. However, we cannot get it to work on the website feed to show the wall entries.

    One problem maybe that no one has the original settings when the group was set up. There are now group two admins but both admins don't have any setup logins to see data from the group. Can we change this so we can get all the data that is available? We don't have any access to group users and data that is usual with pages so I think we are missing something major here.

    The group is https://www.facebook.com/groups/borntoosoonkh/

    Any help for a workaround on the access issue and also if it is possible to show wall posts from a group on a website feed. Really hope you all have brilliant ideas. Thank you for reading and your time.

    one last thing, please.......I know that you cannot like a post unless you are a member of the group but I also can't find a join button for people to request membership.

  • Freeman Mix
    Freeman Mix over 8 years
    im sorry but i just found this i think its exactly what you want with a few mods of course johndoesdesign.com/blog/2011/php/…
  • c7borg
    c7borg about 6 years
    Hi are you able to give an update to this with the recent changes to v2.12 of the API? Many thanks
  • c7borg
    c7borg about 6 years
    Hi are you able to give an update to this with the recent changes to v2.12 of the API? Many thanks