Safari
Safari

Reputation: 11935

getting facebook friends list who have installed an app

It's possible to know the facebook friends that they have installed a my fb app? I have tried some ways directly using the online facebook developer tool but I have not been able to find a solution. I have tried both Graph API and FQL

Upvotes: 0

Views: 742

Answers (1)

RedDragon
RedDragon

Reputation: 2138

Using FQL:

SELECT uid, name, is_app_user FROM user
    WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) 
          AND is_app_user=1 

Upvotes: 2

Related Questions