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 tried accomplish this using both FQL and the Graph API.

I began by trying this FQL call:

$fql = "SELECT pic, src_big FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject = me())";

From this I receive results that include images containing a tag of the given user (in this case: me()). However, these images may include more than one tagged user. I was hoping to work around this issue by using the SQL HAVING clause along with COUNT (http://stackoverflow.com/a/3710501/1406986). Unfortunately I don't think FQL supports this functionality because when I attempted this call:

$fql = "SELECT pic, src_big FROM photo WHERE pid IN (SELECT pid FROM photo_tag HAVING COUNT(subject) = 1";

I recived an error from Facebook. Please correct me if FQL does in fact support this functionality.

In attempt to tackle this using the Graph API I made the following request:

$userPics = $facebook->api('/me/photos');

This returns the user's photos, however, from this point I was forced to iterate over every photo looking for ones that only contain one tag. I found this to be impractical if, for instance, I need to find an image for each of a user's friends that only contains their friend and no others. To do this I would need to retrieve all of each of their friend's photos individually and then iterate over all of them.

I'm still searching for a good solution. Please post your ideas and solutions.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.