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
});
Arihant nahata
source share