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.

Hie

Can someone please tell me how to fetch all the feeds of a facebook page say "cocacola" using FQL ?

share|improve this question

3 Answers

up vote 1 down vote accepted

You can use one query something like:

SELECT post_id,message 
FROM stream 
WHERE source_id IN (
    SELECT page_id 
    FROM page 
    WHERE name='coca-cola'
) LIMIT 5

BUT it's not recommended searching by name, since it may return more than one page. If you know the page_id use it directly. If you are a fan of the page try querying the page_fan table first.

share|improve this answer
This does not seems to giving me all the newsfeeds. Any idea how to fix it for that? – Vik Feb 24 '11 at 4:30

Why not just use graph:

http://graph.facebook.com/cocacola/feed

[edit]

You could try with 2 query-es, one for getting page id and second for getting stream. You can even try to combine them using fql.multiquery like this:

"query1":"SELECT page_id FROM page WHERE name='cocacola'"
"query2":"SELECT message FROM page WHERE source_id IN (SELECT page_id FROM #query1)"
share|improve this answer
Well we have some limitations with that. So i need a FQL way. Thanks for your suggestion though. – Vik Feb 22 '11 at 17:18
SELECT post_id,message 
FROM stream 
WHERE source_id IN (
    SELECT page_id 
    FROM page 
    WHERE name='coca-cola'
) and actor_id IN (
    SELECT page_id 
    FROM page 
    WHERE name='coca-cola'
) 
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.