I have an application that uses the old REST API call Friends.getAppUsers to get the list of friends for the current user that have authorized my application.>
Friends.getAppUsers
Old REST API:
$facebook->api_client->friends_getAppUsers();
New Graph API:
$facebook->api(array('method' => 'friends.getAppUsers'));