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.

Is there any way, with the current tools, to fetch the posts from the event wall?

Is there any way to use FQL, REST or anything else to achieve this?

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, using the event object in the Graph API:

https://graph.facebook.com/<event_id>/feed

You'll need a valid access token and the user_events or the friends_events permissions as well.

share|improve this answer
It sucks... this should be in FQL also, and be available without the permissions, because they are public :/ – Andrei Dec 9 '11 at 21:25
This doesn't work: developers.facebook.com/tools/explorer/… – Gregory Bolkenstijn Nov 14 '12 at 17:56
If you authenticated the Graph API Explorer app without the user_events permission, remove that app from your privacy settings, then re-authenticate. Doesn't make sense to me that that permission is necessary, but it is. – Jared Egan Mar 10 at 7:46

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.