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.

This is my script

    var accessToken = window.location.hash.substring(1);
    var path = "https://graph.facebook.com/me/friends?";
    var queryParams = [accessToken, 'callback=facebookGet' ,'fields=picture,name', 'type=large'];
    var query = queryParams.join('&');
    var url = path + query;

    // use jsonp to call the graph
    var script = document.createElement('script');
    script.src = url;
    document.body.appendChild(script);

Now, I get the friends' pictures, but they're in the lowest resolution. I want large pictures, how do I do it?

edit: I found a workaround. Instead of using

friend.picture

I used

friend.picture.replace("_q","_n")
share|improve this question
Where is the code for "facebookGet"? – DG. Feb 22 '12 at 14:25
var friends=new Array(); function facebookGet(user) { friends=user.data; } – Asaf Schreiber Feb 22 '12 at 14:42

1 Answer

From https://developers.facebook.com/docs/reference/fql/user/

SELECT uid, name, pic_big FROM user WHERE uid IN (SELECT uid1 FROM friend WHERE uid2=me())

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:18

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.