Does anyone know how I can get a thumbnail/avatar of a facebook user using the javascript sdk?

I know to get the full size picture I can do the folllowing:

//Get a list of all the albums
FB.api('/me/albums', function (response) {
  for (album in response.data) {

    // Find the Profile Picture album
    if (response.data[album].name == "Profile Pictures") {

      // Get a list of all photos in that album.
      FB.api(response.data[album].id + "/photos", function(response) {

        //The image link
        image = response.data[0].images[0].source;

      });
    }
  }
});

Not sure on how to get the thumbnail/avatar size. Something like a 50x50 size

link|improve this question

77% accept rate
Isn't there an API rate limit on any of those methods? I heard something about 600 requests per 600 seconds, this is not scaleable. Is there a better way of doing it? – ldn_tech_exec Sep 12 '11 at 19:22
wondering for the same thing as well – adit Sep 13 '11 at 21:02
feedback

2 Answers

up vote 4 down vote accepted

You can also just use an <img> tag with a special URL to do the same thing:

<img src="http://graph.facebook.com/<UID>/picture?type=square" />
link|improve this answer
good answer ... I'm using it often ... Just a little precision from Facebook doc : (use ?type=small | normal | large to request a different photo) – dwarfy Apr 24 '11 at 18:05
I believe it's square, large or small. (developers.facebook.com/docs/reference/api, under Reading -> Pictures.) – Jimmy Sawczuk Apr 24 '11 at 18:10
I don't know, I copy-pasted from the doc ... which is known to be always acurate (NOT) – dwarfy Apr 24 '11 at 20:04
This only works if you are requesting the picture for a 'user'. If you need to get the avatar for a page you'll need to try something else. (still in search of the solution!) – Volcanic Nov 25 '11 at 13:09
@Volcanic no, this should work for pages too. Some pages that are age-gated (like alcohol-related pages) require an access token passed as a GET parameter. – Jimmy Sawczuk Nov 25 '11 at 23:44
show 1 more comment
feedback

I did the following to accomplish the same thing:

FB.api(
      {
       method: 'fql.query',
       query: 'SELECT name,email,pic_small FROM user WHERE uid=' + uid
       // uid is the id of the user.
      },
      function(response) {
         var user = response[0];
         // user.pic_small contains the url for the small sized profile pic
      });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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