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.

I use facebook sdk api with symfony, in the below $user_profile array he can retrieve every information but email and birthday.

        require 'facebook.php';
        $app_id = sfConfig::get('app_facebook_app_id');
        $app_secret = sfConfig::get('app_facebook_secret_key');
        $facebook = new Facebook(array(
            'appId' => $app_id,
            'secret' => $app_secret,
            ));
        $user = $facebook->getUser();
        if ($user) {
              try {
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
        }
       if ($user) {        
           $location= $user_profile['location']['name'];
           $gender = $user_profile['gender'];
            $user_info = array(
                'uid' => $user_profile['id'],
                'first_name' => $user_profile['first_name'],
                'last_name' => $user_profile['last_name'],
                'email' => $user_profile['email'],
                'birthday' => $user_profile['birthday'],
                'gender' => $user_profile['gender'],
            );

when I use print_r($user_profile) it return:

Array ( 
  [uid] => 100004246655890 
  [first_name] => Ala 
  [last_name] => Hamad 
  [email] => 
  [birthday] => 
  [gender] => male 
)

the email and birthday empty.

share|improve this question

3 Answers

Nowhere in your code does it appear that you're requesting the Permission needed to access the user's email address or birthday

Check the permissions doc and make sure you're requesting the email and user_birthday permissions in your Authentication code.

share|improve this answer
1  
thank you after your answer I searched for how to write that in code, then I found that I have to request email permission within the scope. – Hisham Aboulrob Sep 3 '12 at 6:50

If you don't receive these information, one of the cause is because the user configuration prohibits sharing them and Facebook don't send the warns.

Because some users, in the configuration, prohibits sharing the email or other information.

share|improve this answer
yes it retrieve email from some users but some other users not – Hisham Aboulrob Sep 2 '12 at 13:25

I searched for how to write that in code, then I found that I have to request email permission within the scope in the login url:

$params = array(
  'redirect_uri' => url_for('sfGuardAuth/loginWithFB', true),'scope' => 'email,user_birthday,user_location'
);
  $loginUrl = $facebook->getLoginUrl($params);
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.