我需要在我的脸谱资料中向朋友发送应用请求。所以任何人都可以建议我使用图形api实现这一点,我更喜欢图形,因为我一直在使用图形api来完成所有其他任务。提前谢谢。
答案 0 :(得分:1)
试试这个,你将获得你朋友的所有朋友名单。
-(IBAction)getMeFriendsButtonPressed:(id)sender {
FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me/friends" withGetVars:nil];
NSLog(@"getMeFriendsButtonPressed: %@", fb_graph_response.htmlResponse);
}