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.

Possible Duplicate:
How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page?

I spent all the day to understand how to get public photos from Facebook fan page. I could not get it. I am using PHP (actually Yii framework).

This is my first time dealing with Facebook. I have found social plugins, I have read about Graph and other Facebook API, but I didn't get it.

I have a fan page (for example, https://facebook.com/Taviemmatiem), I need to get photos from Facebook and display them in another webpage.

  1. Is it possible?
  2. What technique should I use?
  3. Is it possible without any authentication? (Fan page is public)

Please, give me some hints and keywords, afterwards I can Google myself.

share|improve this question

marked as duplicate by rid, Michael Berkowski, Fahim Parkar, Jan Hančič, VMAtm Dec 4 '12 at 7:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

I would start with FQL Explorer and FQL documentation.

Then look for some Facebook/FQL API for PHP.

Examplary query is:

SELECT aid, pid, src_big from photo where owner = me()
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.