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 want to know if using the graph api there is a way to get all the public photo (or at least a limited list) stored in facebook, i know that you can get the public post using a keyword with:

https://graph.facebook.com/search?q=keyword&type=post

Is there a photo equivalent way?

share|improve this question

1 Answer

You can use FQL to query for all the photos in the user's news feed. This post discusses this in some detail. Here is the FQL that you could use:

SELECT actor_id, created_time, likes, post_id, attachment 
FROM stream WHERE filter_key IN ( 
    SELECT filter_key FROM stream_filter WHERE uid = me() AND (name = "Photos")
)
share|improve this answer
which user this method explore? – PhantomFav Feb 6 at 12:06
It finds photos in the news feed of currently authorized user. – Pulkit Goyal Feb 6 at 13:34
thanks for the answer, but i want to find the pubblic photos of all facebook users. – PhantomFav Feb 6 at 13:37

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.