Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there anyway to get the full-size profile picture using any facebook api?

http://graph.facebook.com/{ID}/picture?type=large is way to small.

Thanks :)

share|improve this question

7 Answers

up vote 8 down vote accepted

its too late to reply on this post, still I want to contribute as I think I use the simplest method to get the full profile picture, you can get full profile picture something like this or you can say the profile picture of really large size:

$facebook->api(me?fields=picture.width(800).height(800))

width and height you can set as per your need, though facebook doesn't return the exact size asked for, they returns the closest dimension picture available with them.

share|improve this answer

You can replace type=large with width=9999&height=9999 for the original size image:

https://graph.facebook.com/someuser/picture?width=9999&height=9999

share|improve this answer

found a way:

$albums = $facebook->api('/' . $user_id . '/albums');
foreach($albums['data'] as $album){
    if ($album['name'] == "Profile Pictures"){
        $photos = $facebook->api('/' . $album['id'] . '/photos');
        $profile_pic = $photos['data'][0]['source'];
       break;
    }
}
share|improve this answer
1  
so some time you also got past profile pic – Danish Iqbal Sep 23 '12 at 21:01

As noted above, it appears that the cover photo of the profile album is a hi-res profile picture. I would check for the album type of "profile" rather than the name though, as the name may not be consistent across different languages, but the type should be.

To reduce the number of requests / parsing, you can use this fql: "select cover_object_id from album where type='profile' and owner = user_id"

And then you can construct the image url with: "https://graph.facebook.com/" + cover_object_id + "/picture&type=normal&access_token=" + access_token

Looks like there is no "large" type for this image, but the "normal" one is still quite large.

As noted above, this photo may be less accessible than the public profile picture. You need the user_photos or friend_photos permission to access it.

share|improve this answer
Great! That direct link to the cover photo worked well for me! – quantum Jul 14 '12 at 13:28

Witg javascript you can get fullsize profile images like this

pass your accessToken to the getface function from your FB.init call

function getface(accessToken){

  FB.api('/me/friends', function (response) {

      for (id in response.data) {

            var homie=response.data[id].id

            FB.api(homie+'/albums?access_token='+accessToken, function (aresponse) {

              for (album in aresponse.data) {

                  if (aresponse.data[album].name == "Profile Pictures") {                      

                      FB.api(aresponse.data[album].id + "/photos", function(aresponse) {
                          console.log(aresponse.data[0].images[0].source); 
                       });


                  }
              }   

            });

      }
  });

}
share|improve this answer

You can use developer tools like firebug in firefox. Right click the image and inspect the element with firebug.

You will get the URL from where facebook retrieves the image. There you will find some URL like this

http://profile.ak.fbcdn.net/hprofile-ak-snc7/c160.2.762.762/s160x160/297962_1190xxxxx203889_104xxxxx723_n.jpg

I have put some deliberately put 'x' in the link for privacy reasons.

To see the image in full resolution open a new tab and open this url:

http://sphotos-e.ak.fbcdn.net/hphotos-ak-snc6/"297962_1190xxxxx203889_104xxxxx723_n.jpg"

As you can see, I have put the exact image name after the '/'

Remove the quotes and open the link. You will get the full size image.

share|improve this answer

Profile pictures are scaled down to 125x125 on the facebook sever when they're uploaded, so as far as I know you can't get pictures bigger than that. How big is the picture you're getting?

share|improve this answer
1  
are they really? if you click on a profile, you get to the full pic :) – Richard Dec 20 '11 at 13:03
Yes, but that picture is not classified as the profile picture. Facebook stores the profile picture (the 125x125 thumbnail), aswell as the original picture. I think you can only access the profile picture, because other pictures of a person are more personal. – ACarter Dec 20 '11 at 13:50
But my app requested user_picture permissions? – Richard Dec 20 '11 at 17:39
Oh, well then I can only think that the URL you gave above is not the right way to access the picture. – ACarter Dec 20 '11 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.