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 :)
|
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 :) |
|||
|
|
|
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:
|
|||
|
|
|
You can replace
|
|||
|
|
|
found a way:
|
|||||
|
|
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. |
||||
|
|
|
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);
});
}
}
});
}
});
}
|
||||
|
|
|
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 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. |
|||
|
|
|
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? |
|||||||||||
|