Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 0 down vote accepted

NSString* fql =[NSString stringWithFormat:@"SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = %lld) LIMIT 1,10",_session.uid];

NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                fql, @"query",
                                nil];

[_facebook requestWithMethodName: @"fql.query" 
                       andParams: params
                   andHttpMethod: @"POST" 
                     andDelegate: self]; 
share|improve this answer
nice to see indian iphone developers... – jeeva Aug 30 '10 at 4:17
@jeeva thank you – priyanka Aug 30 '10 at 8:38
thank u for answer... – jeeva Aug 30 '10 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.