Facebook ‘Friends.getAppUsers’ using Graph API

I searched around for a while, and I too thought this wasn’t possible using Graph API.

However, I posted a similar question, Replacement for old GetAppUsers call to see a user’s friends who use my application?, for the specific API I was using and was given a great general answer.

https://graph.facebook.com/me/friends?fields=installed

or more generally

https://graph.facebook.com/{user id}/friends?fields=installed

This returns all friends, with the additional field “installed=true” for those friends who use the application.

Here is it working in the Graph API Explorer:

Leave a Comment