1
$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'];

これが私のコードです。私はすでにuser_birthday、friends_birthday権限を持っていますが、print_r($friend_profile);これだけが表示されます: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 )

誕生日が表示されません。

4

1 に答える 1

2

グラフ API 呼び出しで現在の access_token パラメータを使用する必要があります

$friend_profile1 = "http://graph.facebook.com/".$fb_friends_id."/?access_token=".$access_token;
于 2012-10-18T09:35:31.173 に答える