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.

I'm new to facebook development, after testing the adobe api in a flash game I decided to test using the graph api communicating with my flash game. After doing basic stuff like connecting and getting my user's data, i was wondering if it's posible to get my user's friends profile pcitures, so i can pass them to UILoaders inside my flash game and show them.

If anyone can point me to examples of basic actions which use the facebook graph api, like invite friends or posting to the wall for example, that would be wonderful.

thanks.

update:

Using Nathan's suggestion I tried to get my friends and it worked:

$friends= $facebook->api('/me/friends?token='.$session['access_token']);
var_dump($friends);

Then I tried to get my friend's pictures with:

foreach ($friends['data'] as $friend)
    {
        $picture= $facebook->api('/'.$friend['id'].'/photo');
    }

But it didn't work. any idea ?

Thanks.

share|improve this question

6 Answers

up vote 6 down vote accepted

You first have to get the list of friends https://graph.facebook.com/me/friends?access_token=... then for each of the friends you can request http://graph.facebook.com/user_id/picture That will give you the url of their current profile photo.

share|improve this answer
I had success getting my friends, but nothing with my friend's pictures. I updated the question to see if you could find the problem. – José Joel. Oct 8 '10 at 20:14
2  
The problem is that getting the photo isnt an api call. The graph url actually will just redirect you to the url. I dont know much about flash, but if I wanted to use the photo of a user for example, I would do this: <img src="graph.facebook.com/user_id/photo"; /> So rather than making the $facebook->$api call just bind your photo to the url. – Nathan Totten Oct 8 '10 at 22:23
3  
Maybe it's a difference between php and javascript (I'm still quite a noob with the facebook api) but to me it's not 'photo', but 'picture': graph.facebook.com/USER_ID/picture which will redirect to some other url (e.g. static.ak.fbcdn.net/rsrc.php/v1/yo/r/UlIqmHJn-SK.gif) – Aleadam Mar 17 '11 at 3:35
3  
It is indeed /picture – Olivier May 16 '11 at 23:12
1  
correct answer was made by @darki699 – JLarky Jan 26 '12 at 12:16
show 3 more comments

Easiest way yet was not posted here:

https://graph.facebook.com/me/friends?access_token=[oauth_token]&fields=name,id,picture
share|improve this answer
Can't get much simpler (and performant) than this. – Nick Baicoianu Nov 24 '11 at 0:32
This is exactly what I was looking for. I don't know why it took so long to find it. Thank you. – rnstewart May 4 '12 at 22:40
definitely the easiest way! thanks – Amit Hagin Aug 27 '12 at 8:24
+1 but i am getting small size of images. For this i need to again hit another service "graph.facebook.com/zuck/picture?width=100&height=100"; can you merge both the query in once ? – Mangesh Jan 10 at 6:07

There are a lot of libraries out there that can make facebook development significantly easier. Here's a recent release:

Big Spaceships Facebook Library

Hope this resource helps!

share|improve this answer
Thanks !, gonna check it now. – José Joel. Oct 8 '10 at 20:13

Another library (sorry I had to split it out because I'm a "new member"):

Facebook Actionscript API

share|improve this answer

It's not possible to get the photos this way : /'.$friend['id'].'/photo

Instead you have to loop through the albums first using : /'.$friend['id'].'/albums

Then for each album id you should use : /'.$album['id'].'/photos

This way you will reach the ID's of the pictures in that album. Then with the picture Id you had, you can get the photo /'.$picture['id'].'/picture

Hope this helps.

share|improve this answer
foreach ($friends['data'] as $friend)
    {
        $picture= $facebook->api('/'.$friend['id'].'/photo?token='.$session['access_token']);
    }
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.