ユーザーのすべての友達のプロフィール写真のURLを取得する方法を探しています。各ユーザーIDを取得し、各IDを「スクロール」する方法(https://www.graph.facebook.com/3422098/picture)を知っていますが、これには不必要に多くの時間がかかります。
バッチリクエスト(http://developers.facebook.com/blog/post/2011/03/17/batch-requests-in-graph-api/)でこれを行う方法を理解し、すべてを取得しようとしています一度にURLを確認できますが、残念ながらわかりません。
友達のリストを入手できます。
NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": \"me/friends\" }";
NSString *jsonRequestsArray = [NSString stringWithFormat:@"[%@]", jsonRequest1];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:jsonRequestsArray forKey:@"batch"];
[facebook requestWithGraphPath:@"me" andParams:params andHttpMethod:@"POST" andDelegate:self];
共通の友人..
NSString * jsonRequest1 = @ "{\" method \ ":\" GET \ "、\" relative_url \ ":\" me / mutualfriends / 61309973?limit = 20 \ "}"; NSString * jsonRequestsArray = [NSString stringWithFormat:@ "[%@]"、jsonRequest1]; NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObject:jsonRequestsArray forKey:@ "batch"]; [facebook requestWithGraphPath:@ "me" andParams:params andHttpMethod:@ "POST" andDelegate:self];
しかし、プロフィール写真を取得する方法がわかりません。
あなたたちが提供できるどんな助けにも感謝します。