getting facebook friends list who have installed an app

时间秒杀一切 提交于 2019-12-25 05:35:40

问题


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


回答1:


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 


来源:https://stackoverflow.com/questions/14480748/getting-facebook-friends-list-who-have-installed-an-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!