我正在尝试使用 fbconnect 获取 10 个朋友列表,我的查询是这样的,
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];
但它正在获取所有朋友列表,任何人都可以帮助我......