I'm building a "Clue" like kind of game where you have to find which friend of yours is the criminal with some clues to help you.
I am trying to find a way to know the kind of relation between the user and a friend I picked up in the friends list; are they friends, family, accointance ? I can't find any information about this in the API documentation and ask myself if there is some other way to find it.
Here is my current request if it can help you...
$criminal_infos = $facebook->api(array(
'method'=>'fql.query',
'locale'=>'fr_CA',
'query'=>'SELECT sex,relationship_status,education,current_location FROM user WHERE uid='.$criminal_id.''
));
Thanks for your help!