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 can access the tags associated with a particular photo via the Graph API, but if I try to query the photo_tag FQL table I get an empty response. I'm using the same access token in each case (testing this in the Graph API Explorer).

For example, if the pid is 123, then https://graph.facebook.com/123/tags shows me the tags that I want to see, but select text from photo_tag where pid = '123' returns nothing.

Is this a bug or did something recently change with Facebook Platform and I'm missing something here?

share|improve this question

1 Answer

up vote 1 down vote accepted

Your id 123 is probably an object_id instead of a pid.

Try this query instead:

SELECT text FROM photo_tag WHERE object_id = 123
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.