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've read all of the Graph API document but nowhere mention to the photo uploaded by user.

I've found that for video uploaded by user, I can use: https://graph.facebook.com/me/videos/uploaded

But what about photo? Is it possible?

Thanks, and sorry for my bad English (cause English is not my native language :) )

share|improve this question

1 Answer

up vote 0 down vote accepted

I'm not sure how you couldn't find it.

Anyway you need to query two tables to get what you want, the album and photo FQL tables:

SELECT pid 
FROM photo 
WHERE aid IN (
    SELECT aid 
    FROM album 
    WHERE owner=me()
)

You can get whatever you want from the photo table obviously. Also you may change me() to a user id.

I suppose that you need the user_photos or friends_photos permissions depending on your needs.

share|improve this answer
Thanks, I'll give it a try. – Bigdragon Apr 29 '11 at 9:34

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.