我的 ios 应用程序有一个图形 api 调用。它看起来像这样:
[[appDelegate facebook] requestWithGraphPath:[NSString stringWithFormat:@"%i/picture", [[userData objectForKey:@"id"] intValue] andDelegate:self];
(可能有些错别字)
但是在我 nslog 结果时确实加载了请求,它是(null)
. Graph API 说你需要使用 fields=picture 或其他东西来获取 url。我该怎么做?如果可能的话,有人可以给我看一些示例代码吗?