gpt4 book ai didi

iphone - iOS : Getting FriendList along with respective name, 使用 FBGraph API 的 id 和图片

转载 作者:行者123 更新时间:2023-11-29 04:12:06 24 4
gpt4 key购买 nike

您可以使用FBGraph API获取friendList以及相应名称和ID,如下所示:

  FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:nil];

但是如何使用FBGraph API获取所有 friend 姓名、ID和图片

最佳答案

您可以使用 FBGraph API 获取 friendList 以及各自的姓名、ID 和图片,如下所示:

NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name",@"fields", nil];

FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:param];

响应将为

data = {
id = 100001625299089;
name = "Name here";
picture = {
data = {
s_silhouette" = 0;
url = "url here";
};
};
},
//all other friends here
}

编辑:您可以位置生日以及FBGraph API Documentation中列出的许多其他字段 .

只需更改上面代码中的param字典

 NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name,location,birthday",@"fields", nil];

关于iphone - iOS : Getting FriendList along with respective name, 使用 FBGraph API 的 id 和图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14257549/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com