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.

Let's say two users are using an application and have granted the application appropriate permissions to retrieve their likes. Is it possible using FQL or the graph api to find what likes they have in common? Similar to how you can find mutualfriends between two users using the graph api. I don't think such an api call exists as I went through the docs but I may have missed it. I'd like to know if this is possible and if so, how it can be done. I really stink with SQL and just started with FQL and can get all the likes from a single user, but how do you get only the common likes between two users (if at all possible)?

share|improve this question

1 Answer

up vote 1 down vote accepted

This can be achieved via FQL.

1) Select the pages of user 1

SELECT page_id FROM page_fan WHERE uid = $user1

2) Select the pages of user 2, and use the page_id's from the previous query as another filter (aka - a sub query)

Which gives you a final complete query that accomplishes this:

SELECT page_id FROM page_fan WHERE uid= $user2 AND page_id IN (SELECT page_id FROM page_fan WHERE uid = $user1)
share|improve this answer
Awesome, thanks very much. The explanation was especially appreciated. – landland Feb 16 at 23:31
Hi Tommy, after playing around with this some more it doesn't seem to work and is returning an empty data set. To test, I used two users, and did SELECT page_id FROM page_fan WHERE uid= $user1 and then SELECT page_id FROM page_fan WHERE uid= $user2. They both contain a common page_id as I double checked. However, when I combine the statement from your example using SELECT page_id FROM page_fan WHERE uid= $user2 AND page_id IN (SELECT page_id FROM page_fan WHERE uid = $user1) the data returned is empty. This is using the FQL Query tool from Facebook. Any ideas? – landland Mar 1 at 17:41
Logically, the query works. So I don't know if there's an issue with timing on this, or what. Try doing this by running a multi query and see what you get: developers.facebook.com/docs/reference/rest/fql.multiquery – Tommy Crush Mar 1 at 22:07
Subqueries (like the IN (SELECT)) may have a LIMIT parameter attached to them. Try explicitly setting LIMIT 500 on each query – Tommy Crush Mar 1 at 22:09
1  
No, it would be: "query1": "SELECT page_id FROM page_fan WHERE uid= $user1 LIMIT 500" "query2": "SELECT page_id FROM page_fan WHERE uid = $user2 AND page_id IN (SELECT page_id FROM #query1) LIMIT 500" – Tommy Crush Mar 2 at 2:12
show 3 more comments

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.