I've been trying to explore the Facbeook C# SDK with the intent to retrieve my friend's photos uploaded in the current month, and the multiquery request that I perform returns few results.
Here's the code:
var client = new FacebookClient(accessToken);
dynamic result = client.Get("fql", new
{
q = new
{
ids = "SELECT uid2 FROM friend WHERE uid1=me()",
album = "SELECT aid FROM album WHERE owner IN (SELECT uid2 FROM #ids) and modified > 1351382400",
photo = "SELECT aid,pid,src,owner FROM photo WHERE aid IN (SELECT aid FROM #album) and created > 1351382400",
}
});
I've tried to implement a workaround for this by separating the first query, to get all of my friends. Afterwards I run a thread for each one of my friends and perform the other queries to retrieve the albums modified recently and after that, the photos in those albums.
This way I'm able to get more results, but it takes about 2 minutes to retrieve the results (which is unacceptable).
Can anyone explain to me why the first implementation doesn't retrieve as much results as the second?
idsandalbumare sub-queries of thephotoquery, rather than 3 sequential queries? – JohnLBevan Nov 30 '12 at 16:53