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
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 ''; }