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 try to get post from other by /feed. But in result it have only post by page. I try to like/unlike but not-thing change. So who got some thing like me or not? Moreover some i try around 10 pages(both likes and not-like) but got problem only this page. Who can help me?

link to try https://developers.facebook.com/tools/explorer/?method=GET&path=ThaiPBSFan%2Ffeed%3Ffields%3Dfrom%2Cmessage%26limit%3D60

share|improve this question

closed as not a real question by Jaguar, alxx, Mario, dkinzer, GorillaPatch May 5 at 19:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I don't think there is a way to filter this using a straight GraphAPI call yet, but I can get posts by others on some pages using this FQL query:

SELECT actor_id, message FROM stream WHERE source_id IN 
 (SELECT id FROM profile WHERE username = "PAGE_USERNAME") 
 AND actor_id != source_id LIMIT 60

This query works for all the pages I admin, plus all of the pages I like. I can also get data some pages I don't like, e.g. IkeaUSA and MakersMark.

The FacebookDevelopers page doesn't work, but it looks like they don't allow posts by others on the page.

Other pages, like your ThaiPBSFan or CocaCola give me an empty data set, though I can clearly see posts by others on their page. This may be due to age/country restrictions. I've also seen this where a pages configured as multilingual do not return data via API queries.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.