到目前为止,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];总结
以上是内存溢出为你收集整理的iOS Facebook Graph API个人资料图片链接全部内容,希望文章能够帮你解决iOS Facebook Graph API个人资料图片链接所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)