How to get list of apps installed by user in Facebook without Facebook Graph API?

874 views Asked by At

I'm using Facebook SDK (javascript) in a ASP.NET C# application to retrieve the list of apps installed by an user.

When I tried retrieving list of apps installed by users in Facebook with the help of Graph API, I came across some links saying that there isn't a way to get that.

Is there any other options available to retrieve this information ?

Thanks in Advance :)

1

There are 1 answers

4
andyrandy On

Without the Graph API, you can´t get ANYTHING from Facebook. Even if you would parse data from Facebook somehow, it would count as "scraping", which is not allowed.

In order to get the list of Apps owned by a user, you have to authorize the user (without any special permission) and use the /me/applications endpoint: https://developers.facebook.com/docs/graph-api/reference/user/applications/developer

If you want to get the INSTALLED Apps of the user, that´s not possible at all.