试图通过批处理请求获取我可以成功完成的所有用户 Facebook 好友信息:
NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": \"me/friends?fields=name,picture\" }";
NSString *jsonRequestsArray = [NSString stringWithFormat:@"[%@]", jsonRequest1];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:jsonRequestsArray forKey:@"batch"];
[facebook requestWithGraphPath:@"me" andParams:params andHttpMethod:@"POST" andDelegate:self];
个人资料图片尺寸较小(50x50),我需要指定照片的尺寸。我一直在查看图形 API 文档,我正在努力将两者联系在一起 - 这是相关链接:http: //developers.facebook.com/docs/reference/api/user/
它说要在请求中添加以下参数,但就像我说的,我不确定如何将两者联系在一起:
picture?type=large
我确信它适用于特定用户的单个请求,但我通过批处理请求没有运气。
谢谢你的帮助,它可能正盯着我看!