I know I can get friends using https://graph.facebook.com/me/friends I also know I can get friends by FQL like so: SELECT uid,username FROM user WHERE uid IN ( SELECT uid2 FROM friend WHERE uid1 = me() LIMIT 20 ) But what I need is to order these by the friends you interact with most often, i.e. your close friends.
Is this possible?