How to get one’s full-size profile picture in Facebook’s PHP SDK? I know about the ?type=large method, but result is only 200px wide.
How to get one’s full-size profile picture in Facebook’s PHP SDK? I know about
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If
?type=largeis only returning a 200px wide image, then that is the largest one Facebook has.You can scale the image larger by specifying the width and height in the query string:
?width=300&height=300and Facebook will return a scaled-up version of the image. See this blog post for more info.The limit on this seems to be 75% larger than the size of the largest stored image Facebook has. For example, my large profile pic is ~180px. If I request a width or height > 312, I get a 312px image back.