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 am trying to fetch data from user's wall and it goes well - just simple request to Facebook Graph API:

https://graph.facebook.com/me/feed?access_token=...

However it returns:

"data": [
      {
         "id": "1337_123",
         "from": {
            "name": "Johny Rambo",
            "id": "1337"
         },
         "message": "hello world",
         ...
       },
       ...
]

What I also need is author's avatar (picture) - in that case Johny Rambo.

I can ask Facebook API for it with other request like:

https://graph.facebook.com/1337?access_token=...&format=json&fields=name,picture

But it makes a n+1 requests to the API (n - number of wall posts if authors are unique).

Is it possible to modify main request for wall posts to fetch from section with users' pictures like below ?

         "from": {
            "name": "Johny Rambo",
            "id": "1337",
            "picture": "http://profile.ak.fbcdn.net/......jpg"
         },
share|improve this question

1 Answer

up vote 7 down vote accepted

You can simply use the ID as the image with /picture:

<img src="https://graph.facebook.com/1337/picture"/>

You can render the current profile photo for any object by adding the suffix /picture to the object URL.

For more information, have a look at the documentation here under "pictures".

share|improve this answer
Simple and useful. – hsz Jun 27 '11 at 9:33

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.