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.

I'm using https://graph.facebook.com/JellyBelly/posts (with an access token) to get all the posts on a page's timeline. However, I'm getting only posts made by the page itself.

  1. How can I also get posts by others?

  2. Could it be that my query also returns posts the page made on other pages/users? I'm not sure it does, but want to know if my query is supposed to only retrieve posts from this page's timeline?

share|improve this question
Why was it voted down? What's wrong? – user940016 Oct 7 '12 at 10:21
I think you were likely voted down because the same page of the documentation which tells you how to access /posts also tells you how to access /feed – Igy Oct 7 '12 at 16:27
I didn't know /feed was the answer. I thought it's used for getting the news feed, i.e updates from pages/users it's subscribed to. That's not a reason for voting down the question, the one who did that could just answer it instead, like you and the one below did... – user940016 Oct 8 '12 at 6:46

1 Answer

up vote 3 down vote accepted

/PAGE_ID/posts give the Page's own posts as described at https://developers.facebook.com/docs/reference/api/page/

To get posts by others you need

/PAGE_ID/feed

or in your case

/JellyBelly/feed
share|improve this answer

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.