facebook friends list getting

前端 未结 2 1971
悲哀的现实
悲哀的现实 2021-01-15 06:15

I want to get a list of friends with php. I got the necessary permissions, but I can not get a list of friends.

\'scope\' => \'email, user_friends\'

$user_fr

2条回答
  •  鱼传尺愫
    2021-01-15 06:32

    Here it is, buddy:

    getUser();
    
        if ($user) {
            $user_profile = $facebook->api('/me');
            $friends = $facebook->api('/me/friends');
    
            echo '
      '; foreach ($friends["data"] as $value) { echo '
    • '; echo '
      '; echo ''; echo '
      '; echo '
      '.$value["name"].'
      '; echo '
    • '; } echo '
    '; }

提交回复
热议问题