あなたはこのようfriendList
にrespective
name and id
使うことでうまくいくことができますFBGraph API
:
FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:nil];
しかし、どのようname, id and picture
にall friends
使用するのFBGraph API
ですか?
あなたはこのようfriendList
にrespective
name and id
使うことでうまくいくことができますFBGraph API
:
FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:nil];
しかし、どのようname, id and picture
にall friends
使用するのFBGraph API
ですか?
あなたはこのようfriendList
にそれぞれのname, id and picture
使用法とうまくやっていくことができますFBGraph API
:
NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name",@"fields", nil];
FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:param];
Response
になります
data = {
id = 100001625299089;
name = "Name here";
picture = {
data = {
s_silhouette" = 0;
url = "url here";
};
};
},
//all other friends here
}
編集:FBGraph APIドキュメントにリストされているloaction
、、、birthday
および多くのことができます。other fields
param dictionary
上記のコードを変更するだけです
NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name,location,birthday",@"fields", nil];