The purpose of this function is to find friends of the active user who work in a certain field. I've run similar functions on current location, college and major but can't get to seem to get this one to work. So I'm looking for friends of the active user who work in real estate, finance, etc.
function NewBuddies () {
$config = array(
'appId' => 'XXXXXXXXX',
'secret' => 'XXXXXXXXXX',
);
$facebook = new Facebook($config);
$user_id = $facebook->getUser();
try {
$fql = "select uid,name,work from user WHERE uid IN (select uid2 from friend where uid1=($user_id))";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);
}
catch(Exception $o){
d($o);
}
$friends = $fqlResult;
$friends_BA = array();
foreach ($friends as $friend) {
$isBA = false;
if (is_array($friend['work'])) {
foreach ($friend['work'] as $school) {
if (isset($school)) {
foreach ($school['employer'] as $name) {
$lowerName = strtolower($name);
if (strpos($lowerName, 'company') !== false || strpos($lowerName, 'corporation') !== false) {
$friends_BA[] = $friend['name'];
continue 3; // skip to the next friend
}
}
}
}
}
}
echo '<pre>';
print_r($friends_BA);
echo '</pre>';
}
Here is an example of a similar function that does work. It retrieves a list of the Facebook users friends who live in the same city:
function getLocalFriends () {
$config = array(
'appId' => 'XXXXXX',
'secret' => 'XXXXX',
);
$facebook = new Facebook($config);
$user_id = $facebook->getUser();
try {
$fql = "select name,current_location from user WHERE uid IN (select uid2 from friend where uid1=($user_id))";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);
}
catch(Exception $o){
d($o);
}
$friends = $fqlResult;
$friends_BA = array();
foreach ($friends as $friend) {
$isBA = false;
if (is_array($friend['current_location'])) {
$lowerName = strtolower($friend['current_location']['city']);
if (strpos($lowerName, 'orlando') !== false || strpos($lowerName, 'altamonte springs') !== false) {
$friends_BA[] = $friend['name'];
}
}
}
echo '<pre>';
print_r($friends_BA);
echo '</pre>';
}