检索Facebook朋友列表
我想从Facebook中检索用户的朋友列表。 任何示例代码将高度赞赏。
login后,做这个 – [facebook requestWithGraphPath:@“me / friends”andDelegate:self]; //这个委托方法中的朋友数据应该被parsing。
- (void)request:(FBRequest *)request didLoad:(id)result { if([result isKindOfClass:[NSDictionary class]]) { NSLog(@"dictionary"); result=[result objectForKey:@"data"]; if ([result isKindOfClass:[NSArray class]]) for(int i=0;i<[result count];i++){ NSDictionary *result2=[result objectAtIndex:i]; NSString *result1=[result2 objectForKey:@"id"]; NSLog(@"uid:%@",result1); [uids addObject:result1]; } } }
在这里,我添加了所有的朋友uid到一个数组。 同样的方式,你可以得到名字,并执行任何使用GraphApi。
希望它帮助你..
使用graphicsapi来请求withgraphapi string @“me / friends” 。
这是为签署的用户朋友。
好友列表
用户的朋友列表
需要“read_friendlists”的权限才能读取“manage_friendlists”写入
所以把它们添加到你的权限数组中
包含好友列表的ID和名称字段的对象数组
使用FacebookGraph API获取用户的好友列表