How to obtain Full Size Profile Picture of facebook

旧时模样 提交于 2019-12-13 19:14:59

问题


How to obtain a full size profile picture from Facebook ?

http://graph.facebook.com/{ID}/picture?type=large is way to small. I want a bigger size ? Is that possible ? I need a way without FBML because that is soon to end


回答1:


You can specify width and/or height and Facebook will return an image less than or equal to the given size.

http://graph.facebook.com/{ID}/picture?width={size_in_pixels}&redirect=false




回答2:


you have to pass another variable "redirect=true" in the url. That means, your URL will be like http://graph.facebook.com/{ID}/picture?type=large&redirect=true




回答3:


If you have user_photos permission you should be able to get the current profile picture by finding the first image in the Profile Pictures Album. Here is some sample code from Kilian Valkhof.



来源:https://stackoverflow.com/questions/10498103/how-to-obtain-full-size-profile-picture-of-facebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!