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.

Is there any optimal way of retrieving a list of friends with their profile pictures?

I'm getting a list of friends and then querying each userid for their profile picture URL.

This seems very inefficient if you're loading a big list of friends 500+ and querying each one of them for the profile picture URL.

If it can't be done through the graph, what's the best way to do this with FQL?

share|improve this question

1 Answer

up vote 1 down vote accepted

It's very easy:

/me/friends?fields=name,picture

If you want a photo of a specific size, use this:

/me/friends?fields=name,picture.type(SIZE)

Where SIZE is one of small, normal, large or square.

In FQL you can do this with

SELECT uid, name, pic FROM user WHERE uid IN (SELECT uid1 FROM friend WHERE uid2=me())
share|improve this answer

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.