I'm trying to get the url of a photo that I uploaded in an album
I use the following code:
Code:
NSString *fqlQuery = [NSString stringWithFormat:@"SELECT src_big FROM photo WHERE pid = '%@'", pid];
[fbAgent runFQL:fqlQuery];
however this returns me an empty result
Anyone has an idea why this doesn't work?