-1

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.

Community
  • 1
  • 1
renathy
  • 5,125
  • 20
  • 85
  • 149
  • possible duplicate of [How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page?](http://stackoverflow.com/questions/5083464/how-to-use-facebook-graph-api-to-retrieve-fan-photos-uploaded-to-wall-of-fan-pag) and http://stackoverflow.com/questions/9446557/facebook-graph-api-call-for-a-pages-photos – rid Dec 03 '12 at 20:48

1 Answers1

1

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()
Grzegorz Gierlik
  • 11,112
  • 4
  • 47
  • 55