I am trying to execute a facebook multiple query from an IOS app. My aim is getting 10 photos chosen from 10 album chosen from 10 friends. Here is the code I am using
NSString *query1 = [NSString stringWithFormat:@"SELECT uid, name FROM user order by rand() limit 10"];
NSString *query2 = [NSString stringWithFormat:@"SELECT aid, owner FROM album WHERE owner IN (SELECT uid, name FROM #userset) order by rand() limit 10"];
NSString *query3 = [NSString stringWithFormat:@"SELECT pid, src,aid FROM photo WHERE aid IN (SELECT aid FROM #albumset) order by rand() limit 10"];
NSString* queries = [NSString stringWithFormat:
@"{\"userset\":\"%@\",\"albumset\":\"%@\",\"photoset\":\"%@\"}",query1,query2,query3];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
queries
, @"queries",
nil];
NSLog(@"Very query %@",params);
[_facebook requestWithMethodName: @"fql.multiquery"
andParams: params
andHttpMethod: @"POST"
andDelegate: self];
The result I get says ORDER is in the wrong place I have also tried to remove the "order by rand limit 10" parts thus to get all the photos of all the albums of all the friends. Instead of this i get an "unexpected end of query".
Any help?!
Thank you
I am now trying to execute an atomic query but still have some problem I can not figure out. here is the query
NSString *query1 = [NSString stringWithFormat:@"SELECT uid FROM user"];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObject:query1 forKey:@"query"];
[_facebook requestWithMethodName: @"fql.query"
andParams: params
andHttpMethod: @"POST"
andDelegate: self];
The error response I get from facebook is
error_msg=Parser error: unexpected end of query., error_code=601