I am having issues with getting a list of users who have not installed my app yet. I had it working perfectly two months ago, but left it to work on another project, not it only seems to return those users who already installed the app…
This seems consistent with this facebook documentation and v2.1 of open graph, I have also tried to use the “facebook.showDialog( “friends”, onComplete )” command and it has the same result…
as rob said, you only get friends that have it installed when you use facebook.request(“me/friends”, “GET”) as per the new facebook rules
but… if you just want the list of friends so you can ‘invite them to play’ you can use facebook.showDialog(“apprequests”, {title=“Choose Friends”, message=""} )
This will give you a pop up from facebook where you can select your friends that dont have it installed.
although I’ve not gotten it to work yet, facebook does have an “me/invitable_friends” edge that is supposed to give you a list of friends NOT currently using your app. This is a special api that requires you to ask facebook in advance for permission to use it…
Some documentation implies it should work with an app in develop-mode but again, mine is currently falling flat…
If anyone else has gotten it to work, I’d love some tips…
as rob said, you only get friends that have it installed when you use facebook.request(“me/friends”, “GET”) as per the new facebook rules
but… if you just want the list of friends so you can ‘invite them to play’ you can use facebook.showDialog(“apprequests”, {title=“Choose Friends”, message=""} )
This will give you a pop up from facebook where you can select your friends that dont have it installed.
although I’ve not gotten it to work yet, facebook does have an “me/invitable_friends” edge that is supposed to give you a list of friends NOT currently using your app. This is a special api that requires you to ask facebook in advance for permission to use it…
Some documentation implies it should work with an app in develop-mode but again, mine is currently falling flat…
If anyone else has gotten it to work, I’d love some tips…