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...)