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 have aid and user_photo permission, and I want the photo's source. So I do:

select source from photo where id = ID_PHOTO

It doesn't work. What should I do?

share|improve this question

2 Answers

There is NO column id

I think you wanted pid (wrap photo id in quotes, pid is a string)

select src from photo where pid = "ID_PHOTO"

reference

EDIT:

It looks like pid isn't working either. Try to use object_id instead if pid wouldn't work.

select src from photo where object_id = "ID_PHOTO"
share|improve this answer
there is no "source" either. it's "src" -- in any case this wasn't working for me (seemingly a FB bug) – Nathan Labenz Apr 6 '12 at 0:29
@Nathan yeah, sorry. Edited – Martin. Apr 6 '12 at 0:29
It's ok. I don't know why i have take source, id and not src, pid. Thanks a lot :) – Jessy Leite Apr 6 '12 at 0:35
@Jessy if my question helped you, please accept it by ticking it – Martin. Apr 6 '12 at 0:53

You should use Graph API. Here's how it works:

  • To get albums: https://graph.facebook.com/me/albums?access_token=...

  • To get photos: https://graph.facebook.com/me/photos?access_token=...

  • To get the photos in a particular album: https://graph.facebook.com/*[album_id_here]*/photos?access_token=...

share|improve this answer

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.