Reputation: 3143
The Graph API makes it easy for me to determine who the friends of the current user are. I have two questions:
Upvotes: 3
Views: 428
Reputation: 38125
There's a rest method called friends.getAppUsers
for this. Or you could use FQL:
SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND is_app_user=1
Upvotes: 7