这是我想要实现的,我有一个使用搜索API的facebook应用程序 示例 - https://graph.facebook.com/search?q=mark&type=user
使用它我能够搜索具有他们的电子邮件或姓名或位置的用户,我还想要做的是搜索名称和位置的组合,我也尝试了fql,但这也没有提供所需的结果。
是否有办法使用FAcebook API搜索使用多个条件的人
答案 0 :(得分:0)
你可以试试这个
$user_friends1 = file_get_contents('https://graph.facebook.com/'.$uid.'/friends?fields=id,name,birthday&access_token='.$access_token);
$user_friends = json_decode($user_friends1,1);
现在你可以从$ user_friends数组中找到你想要的东西