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.

Following code gives me the id of the friends. What I am trying to do is get the gender of the friend but not having any success. I can run another loop with the generated ID but it won't be so efficient. Is there a query that will gives the name and the gender of the friends. The permission for the app is friends_about_me. Is this permission good enough to get the friends gender?

    <?php
      $app_id = '******';
      $app_secret = '*****';
      $my_url = 'http://apps.facebook.com/****/';

      $code = $_REQUEST["code"];

     //auth user
     if(empty($code)) {
        $dialog_url = 'https://www.facebook.com/dialog/oauth?client_id=' 
        . $app_id . '&redirect_uri=' . urlencode($my_url) ;
        echo("<script>top.location.href='" . $dialog_url . "'</script>");
      }

      //get user access_token
      $token_url = 'https://graph.facebook.com/oauth/access_token?client_id='
        . $app_id . '&redirect_uri=' . urlencode($my_url) 
        . '&client_secret=' . $app_secret 
        . '&code=' . $code;
      $access_token = file_get_contents($token_url);

      // Run fql query
      $fql_query_url = 'https://graph.facebook.com/'
        . '/fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()'
        . '&' . $access_token;
      $fql_query_result = file_get_contents($fql_query_url);
      $fql_query_obj = json_decode($fql_query_result, true);


    echo $fql_query_result;
share|improve this question

1 Answer

You just need a single FQL query to get gender information for your user's friends:

SELECT uid, name, sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())

This was adapted from a sample on Facebook Developers FQL main page.

Note that not all users will have a published gender, so you should take this into account when writing your code.

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.