One immensely useful call in the old REST API is Friends.getAppUsers
. This call returns all your friends that are using an application. Sadly, this is not in the Open Graph API. There is a good Stack Overflow post about it, Facebook 'Friends.getAppUsers' using Graph API.
However, it is possible to use the Graph API to make FQL calls as can be seen here in the Graph API explorer.
I thought that maybe I could make the following call using the C# SDK:
fb.GetAsync("fql/?q=SELECT uid,username, is_app_user FROM user WHERE uid IN(SELECT uid2 FROM friend WHERE uid1 = me()) AND is_app_user=1");
However, this returned an error. Is there a way to work around the lack of the GetAppUsers
call using the existing C# SDK?
The replacement API call for users.isAppUser is a simple call to /me/?fields=installed
This also works for a user's friends so by extension it's a replacement for friends.getAppUsers
.
I tried this both with the App Access Token and a regular User Access token.
Make an API call to /{user id}/friends?fields=installed
- The return looks like this:
{
"data": [
{
"id": "{FRIEND_UID_1}"
},
{
"id": "{FRIEND_UID_2}"
},
// etc...
{
"installed": true,
"id": "{FRIEND_UID_X}"
}
//SNIP
You can use the presence, or lack therof, of the installed:true
to determine which of the user's friends use your app.
If that doesn't work for you for some reason; won't you already have a list of uids of users of your app in your own database? You could just retrieve the user's full list of friends and compare it to your own records of who's using your app.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With