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 got a user ID of my friend, at some time he remove me from my friend list, how can i check using API , whether the specific ID is my friend or not. Thanks

share|improve this question

1 Answer

up vote 4 down vote accepted

i solved by running this fql

$fql_areFriends = "SELECT uid1, uid2 FROM friend WHERE uid1=$user_Id AND uid2=[USER_ID_OF_THE_FRIEND]";

  $friends       = $client->api(array(
                  'method'       => 'fql.query',
                  'access_token' => $user_access_token,
                  'query'        => $fql_areFriends,
                ));

if($friends!=null){
echo 'You Are Connected to friend
}
else{
echo 'You Are Not Connected to friend

}
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.