How to fetch profile picture from facebook javascript SDK?

24,354

Solution 1

Why don't you just use the id you've already retrieved and display the image directly? Why do you need to make an extra call?

e.g

function getFBData () {
FB.api('/me', function(response) {
  fbinfo = new Array();
  fbinfo[0] = response.id;
  fbinfo[1] = response.first_name;
  fbinfo[2] = response.last_name;
  fbinfo[3] = response.email;

     var im = document.getElementById("profileImage").setAttribute("src", "http://graph.facebook.com/" + response.id + "/picture?type=normal");
});
}

For example http://graph.facebook.com/4/picture?type=normal redirects to Mark Zuck's picture

If you're having trouble log the url out to make sure you're getting a valid id back and paste the url into a browser.

Solution 2

Try Like

FB.api("/me", {fields: "id,name,picture"}, function(response)
{

    FB.api(
            {
                method: 'fql.query',
                query: 'SELECT pid, src_big, src_big_height, src_big_width FROM photo WHERE aid IN ( SELECT aid FROM album WHERE owner="' + response.id + '" AND name = "Profile Pictures")'
            },
            function(data1) {
                alert( data1[0].src_big );
            }
    );

});

This will give you the Link of the image and you can use it appropriately

One More Option

Solution 3

@hiraa is right, but the code is missing. Here it goes

FB.api('/me', {fields: 'id,name,email,picture'}, function (response) {
    var picture_url = picture.data.url;
});

Solution 4

I have tried this and this is running successfully. Try this :

FB.api('/me', { fields: 'id, name, email' }, function(response) 
{
    var userInfo = document.getElementById('user-info');
    userInfo.innerHTML = '<img src="https://graph.facebook.com/' + response.id + '/picture">' + response.name ;

});

Hope You got the answer.

Solution 5

I know this post is old, but the other answers are giving my website broken links (concatenating the user ID with the rest of the URL to get the image).

I found that the correct way to do this is as follows (according to the official docs here: https://developers.facebook.com/docs/graph-api/reference/user/picture/):

/* make the API call */
FB.api(
    "/{user-id}/picture",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);

From the official docs, the way you get the profile picture of a user

Share:
24,354
Raghav Singh
Author by

Raghav Singh

Updated on July 09, 2022

Comments

  • Raghav Singh
    Raghav Singh almost 2 years

    I am trying to fetch profile picture from facebook. Right now I am getting all information from facebook but unable to get profile pic of the user. Here is my code:

    function getFBData () {
        FB.api('/me', function(response) {
          fbinfo = new Array();
          fbinfo[0] = response.id;
          fbinfo[1] = response.first_name;
          fbinfo[2] = response.last_name;
          fbinfo[3] = response.email;
          FB.api('/me/picture?type=normal', function (response) {
             var im = document.getElementById("profileImage").setAttribute("src", response.data.url);
             alert(im);
            }); 
    

    How can I get picture from response of this API.