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 know you can't get friends of friends, but can you get mutual friends using some query, in a computationally efficient manner?

Could I even iterate through my friends to see which of them is friends with a target?

share|improve this question

1 Answer

You can do it like this:

$facebook = new Facebook(array(
  'appId'  => FB_ID,
  'secret' => FB_APP_SECRET,
  'cookie' => true,
));


$fql = "SELECT id FROM profile WHERE id IN (SELECT uid2 FROM friend WHERE uid1=me())";

$response = $facebook->api(array(
'method' => 'fql.query',
'query' =>$fql,
));

This will return the id of the mutual friends. Hope this helps you :)

EDIT:

If you want to get the mutual friends between you and id=13245 then you can do like:

$facebook = new Facebook(array(
  'appId'  => FB_ID,
  'secret' => FB_APP_SECRET,
  'cookie' => true,
));

$fql = "SELECT uid1, uid2 FROM friend WHERE uid1 IN (SELECT uid2 FROM friend WHERE uid1=me() AND uid2 = '13245' ) AND uid2 IN (SELECT uid2 FROM friend WHERE uid1=me())";

$response = $facebook->api(array(
'method' => 'fql.query',
'query' =>$fql,
));

It will return all mutual friends id.

Hope this gives you what you want.

share|improve this answer
I don't see how this works. Where do I put in the second user? Say I want mutual friends between me() and id=13245 how do I structure that query? – JoshDG Jan 31 '12 at 5:37
What are you getting now.. Are you getting array of friends ids – Sabari Jan 31 '12 at 6:12
Please check with my edit – Sabari Jan 31 '12 at 6:54
@JoshDG, That way you can only get mutual friends if both users connected with your application. – Juicy Scripter Jan 31 '12 at 7:35
@Juicy Scripter.You can get the mutual friends even if they are not connectes using my query. – Sabari Jan 31 '12 at 8:15
show 1 more comment

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.