I am trying to fetch 10 friends list using fbconnect my query is like this,
NSString* fql = [NSString stringWithFormat:@"select uid from user where uid == %lld LIMIT 1,10", _session.uid];
NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
[FBRequest requestWithDelegate:self] call:@"facebook.friends.get" params:params];
But it’s fetching all the friends list, Anyone help me….
1 Answer