テーブルビュー(写真、名前、ユーザーID)でアプリユーザーのすべてのFacebookの友達を表示したいユーザーのユーザーIDとアクセストークンを取得しました.どうすれば友達リストを取得できますか?
グラフ API の URL はありますか?
NSString *fields = @"id,name,picture,first_name";
NSString *path = [NSString stringWithFormat:@"https://graph.facebook.com/me/friends?fields=%@",fields];
これをaccessTokenとマージします
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@&access_token=%@", path,yourAccessToken]];
次のURL を使用できます: https://graph.facebook.com/me/friends 詳細なドキュメントは、こちら にあります。