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.

Graph API is not returning image("picture" attribute) for objects corresponding to community pages, which used to be returned earlier. For example this https://graph.facebook.com/178790412179919 does not have picture attribute whereas the corresponding page has an image.

Also the FQL query done on the "albums" connection for some objects does not have a "cover_pid" attribute for an album corresponding to type "profile", which again used to work earlier.

Does anybody know if anything has changed in Graph API corresponding to this in last couple of weeks (I am fairly confident it used to work earlier in the expected way). I looked through Facebook API release notes but could not find any changes corresponding to this. Please let me know if this not appropriate post for this forum.

share|improve this question
are you trying to get photos from your facebook page? – Emkey Sep 14 '11 at 1:36

2 Answers

https://developers.facebook.com/docs/reference/api/page/

picture is a connection, not an attribute. So ...

https://graph.facebook.com/178790412179919/picture

And as the docs say: Returns a HTTP 302 with the URL of the user's profile picture.

Kinda goofy? Yes, but it works exactly as the docs say it does. I suspect they implemented it this way so it could easily be used in an <IMG> tag.

share|improve this answer
picture is mentioned in the fields table in the same doc. it seems something needs to be configured to fetch the picture in response of graph api call. – geekay Aug 28 '12 at 7:02
Facebook's API changes randomly and often. This post was from almost a year ago which means most certainly the API and docs have changed. I no longer have any interest in Facebook and haven't used their API in some time. – Brian Roach Aug 28 '12 at 15:44
Actually graph.facebook.com/178790412179919/picture works just fine. – Odelya Mar 18 at 13:09

UPDATE:

It still works via FQL. In your case:

https://api.facebook.com/method/fql.query?query=SELECT+page_id%2C+pic+FROM+page+WHERE+page_id+%3D+178790412179919&format=json


I can confirm that this PREVIOUSLY worked, but NO LONGER works. Facebook have removed the picture connection from Community Pages.

I suspect the reason is that most of these images are pulled from Wikipedia, and there was a licensing / attribution issue.

Unfortunately, Facebook is no longer a reliable source of images for entities (e.g. bands).

share|improve this answer
It also used to work for /me and /me/friends etc. – stevew Oct 9 '12 at 10:12

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.