我无法在Facebook上请求大版本的用户个人资料图片..在我的图表路径中我正在做:
NSString *requestPath = @"me/?fields=first_name,last_name,gender,email,birthday,verified,picture";
那里的图片字段只给我一个小版本的个人资料图片,但我需要大版和普通版..我已经尝试过将图片更改为picture_large,pic_large,image_large但这些都不起作用..
拜托,我已经阅读了这些文件,所以如果你打算再告诉我,请不要回答.我在这里问这个问题,因为我已经到处搜索过,无法找到解决办法.
谢谢,
牛顿
解决方法
你可以使用:
http://graph.facebook.com/USER/picture?type=large
这将返回到静态图像URL的重定向,如User object documentation中所述:
HTTP 302 redirect to URL of the user’s profile picture (use ?type=square | small | normal | large to request a different photo).