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 count the number of tagged photos you share with your friends from 2 years back.

Currently I am calling the graph with

/me/photos?fields=id,tags,created_time&limit=2000&since=1284374555

This retrieves all my photos from the last two years... I then loop through all my photo tags, and use a counter to count the number of tags for each friend.

This is pretty slow...

I was wondering if it's possible to use a single FQL query to do this, and return a single array of all your friends, with these three attributes for each friend:

    name = Joe Bloggs //Friend name
    id = 7643785634 //Friend id
    tag_count = 45 //Tags you share with each other

I know this will be a fairly complex query. So any help is much appreciated.

share|improve this question
2  
FQL does not have a count method, so you'll still have to count friends tags individually. Unlike the API, you'll need to use a multiquery to get all this data and then loop through multiple objects to assemble it back together. If I were developing with JS, I'd use your API query rather than FQL for this. – cpilko Sep 13 '12 at 15:47
Would this be useful? stackoverflow.com/a/8540284/698289 – DanH Jan 17 at 9:05

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.