I want to get friend app user with Graph API
I tried to user with me/friends?fields=installed
but I got all of my friends. Maybe, I have some wrong in here.
Please show me any way to get friend app user with Graph API. I don't know in Facebook SDK 3.0 can I get that list easier?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can get list of friends whom are user of your app using FQL rather than Graph API as:
SELECT uid FROM user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())
AND is_app_user = 1