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 need to find out who all(my friends only) are tagged in a specific photo. I know the pid of the photo. This needs to be done via a FQL query.

Any help?

share|improve this question

1 Answer

Here you go. This will give you most of the data you should need about a friend tagged in a specific photo.

SELECT id, name, pic_square, username, type FROM profile WHERE id IN
  (SELECT subject FROM photo_tag WHERE pid = XXXXX AND subject IN
    (SELECT uid2 FROM friend WHERE uid1 = me() ) )

You may not get all your friends with this query who are visible in the Facebook app. This depends on how they have their privacy settings configured. The API won't return their data to you if their privacy isn't set to public.

Depending on how you're getting it, you may want to sub out object_id for pid. The pid field seems like it's on the path to deprecation.

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.