Hie
Can someone please tell me how to fetch all the feeds of a facebook page say "cocacola" using FQL ?
|
|
|
You can use one query something like:
BUT it's not recommended searching by name, since it may return more than one page. If you know the |
|||
|
|
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)" |
||||
|
|
|||
|
|