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.
$fb_friends = $f1->getFacebookFriends();
$fb_friends_Count = $f1->displayFriendCount(array('users'=>$fb_friends, 'nb_display'=>1));

//get current date
$date_now=getdate();
$current_day=$date_now['mday'];
$current_month=$date_now['mon'];
$current_year=$date_now['year'];

//get friends' details  
for($u=0; $u<$fb_friends_Count; $u++) {
    $fb_friends_id=$fb_friends[$u]['id'];
    $friend_profile1="http://graph.facebook.com/".$fb_friends_id."/";
    $friend_profile = @file_get_contents($friend_profile1);
    $friend_profile = json_decode($friend_profile,true);    
    $gender=$friend_profile['gender'];
    print_r($friend_profile);

    //get birthday
    $birthday=$friend_profile['birthday'];

Here is my code. I already have the user_birthday, friends_birthday permission but the print_r($friend_profile); only shows this: Array ( [id] => xxxxxxx [name] => Joye Tanay Lipata [first_name] => Joye [middle_name] => Tanay [last_name] => Lipata [link] => http://www.facebook.com/joye.lipata [username] => joye.lipata [gender] => female [locale] => en_US )

The birthday is not showing.

share|improve this question
Is this for all friends you’re querying, or just for specific once? If a user has set their privacy settings so that their birthday will not get shared with apps their friends are using, then you will not get a birthday value for such a friend. – CBroe Oct 18 '12 at 9:46
this is for all of my friends.. I don't know why but the birthday doesn't show in the array – user1755741 Oct 18 '12 at 9:50
They are probably hiding their birthday information. – Ron Mar 6 at 13:09

1 Answer

You must use current access_token parameter in graph api call

$friend_profile1 = "http://graph.facebook.com/".$fb_friends_id."/?access_token=".$access_token;
share|improve this answer
i already have that in my function: function getFacebookFriends($criteria='') { $name = $criteria['name']; if($name=='') $name = 'me'; $url = 'graph.facebook.com/'.$name.'/…; $content = @file_get_contents($url,0,null,null); $content = json_decode($content,true); $users = $this->formatFacebookUsers($content); return $users; } – user1755741 Oct 18 '12 at 9:37
what seems to be wrong in my code? please help me..thanks – user1755741 Oct 18 '12 at 10:20
It is just used getting user friends. In your for loop, you are making another graph api request which has no access_token parameter. Use access_token parameter all graph api calls.. – aykut Oct 18 '12 at 10:21
what should i need to do? – user1755741 Oct 18 '12 at 10:33
i used that for getting the gender of my friends..and the gender is showing properly.. but why is the birthday not showing? i dont know if it is permission issue.. but i have set user_birthday and friends_birthday in my app and in the scope... – user1755741 Oct 18 '12 at 10:41
show 3 more comments

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.