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.

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>';
}
share|improve this question

1 Answer

You might not be getting any results because you might not be requesting the correct permissions. friend_work_history will be needed.

share|improve this answer
Those permissions are granted – buttonitup Jan 12 '12 at 12:53
My next suggestion is to step thru the code as it is running using a debugger tool and check to see what values you have at what point. – DMCS Jan 12 '12 at 15:14
Why is this question being down voted? Am I not being clear on something? – buttonitup Jan 12 '12 at 20:06
Dunno, maybe the people feel you haven't been very clear as to what you've tried and what you're actually looking for. – DMCS Jan 12 '12 at 20:10
I'm trying to find friends of the active Facebook user who work in the same field of employment. I coded it just like similar working functions and it won't run. I will add working functions above. An up vote would be appreciated : ) – buttonitup Jan 12 '12 at 20:20
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.