我正在检索到个人资料图片的链接…
到目前为止,API API调用:
到目前为止,API API调用:
[facebook requestWithGraPHPath:@"me/picture" andDelegate:self];
将图像本身返回为数据.当我打电话时:
[facebook requestWithGraPHPath:@"me/picture" andDelegate:self];
我得到一个图片的数组与每个的链接.
有没有得到一些类似的事情的个人资料图片,至少只是链接…或是不可能吗?
如果有人已经通过,请让我知道.
干杯,
萨米.
解决方法
使图表请求:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"picture",@"fields",nil]; [facebook requestWithGraPHPath:@"me" andParams:params andDelegate:self];
然后根据要求加载:
NSString *pictureUrl = [result objectForKey:@"picture"];
如果您想要其他字段,只需将它们添加到params字典:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"id,name,picture",nil];