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
This can be done with FQL.
SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ?) AND is_app_user = 1
QED!