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 making a query to Facebook Graph to get me the latest posts from a list of pages. I have around 300 pages, and I want to query them every minute for all items posted in the last minute. However, there seems to be a problem with .fields() and large number of items - because I consistently get an 'Unknown' error-message if I iterate through more than 50 pages.

So instead of doing page by page, I'd like to get all in one query, ie. sort it server-side and only return the relevant results.

I might need FQL for this? Or is it possible with fields? This is what I have so far, using .fields.

pages = 'likes.limit(50).fields(id, feed.since(' + str(tenmin) + '))'
g.get_object("505190802824470", {'fields':pages}, callback=pages_callback)

Facebook docs show the following:

For example, say you want to get some data about a user attending an event. Normally, you’d have to perform two queries in a row, waiting for the results of the first query before running the second query, since the second query depends on data from the first one. But with fql.multiquery, you can run them at the same time, and get all the results you need, giving you better performance than running a series of fql.query calls. First, you need to get the user ID and RSVP status of each attendee, so you’d formulate the first query – query1 – like this:

"query1":"SELECT uid, rsvp_status FROM event_member WHERE eid=12345678"
"query2":"SELECT name, url, pic FROM profile WHERE id IN (SELECT uid FROM #query1)"

But how can I make a query of every item/post updated in the last minute on every page in a list of likes that belongs to a page? Would something like this work - ?

"query1" : SELECT id_of_pages/likes FROM list_of_likes WHERE page_id = 2212331
"query2" : SELECT items/posts/statuses/photos FROM query1_pages WHERE since 1 min ago 

(Not literally obviously...)

share|improve this question
Anybody? Really need some input! – knutole Oct 12 '12 at 18:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.