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 able to get images from my Facebook page no problem, but only images uploaded by page admins.

https://graph.facebook.com/tofinobc/photos/

What I want to get is all images uploaded "by others" - Images posted to the page by fans.

Can it be done?

share|improve this question

1 Answer

Yes I just verified that you are correct in stating that the photos in the /photo connection are only photos put there by the page and page admins. However for photos that users upload to the page, they're not there, because the live in a different album:

fql?q=SELECT pid, object_id,src_big, link, caption FROM photo WHERE pid IN(SELECT pid from photo_tag WHERE subject='PAGE_ID')

Somehow when uploaded to a page, facebook "tags" the page in the album. Strange, eh?

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 20:23

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.