Created
May 2, 2013 08:05
-
-
Save preslavrachev/5500832 to your computer and use it in GitHub Desktop.
Find which friends of yours are using a particular Facebook-connected application.
Unlike other approaches, using this FQL query, one will fetch only those among one's friends, who are actually using the application. The application in question depends on the access token being passed in the request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT uid,name,is_app_user FROM user WHERE is_app_user AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment