Is there a Facebook API to list all applications?

Do any of you know about calling the facebook api (or equivalent) that can list all facebook applications?

I could not find it on my own.

+4
source share
2 answers

There is no API call that will list every application ever created as a privacy issue. Applications that this user is an administrator use the page_admin table:

 SELECT page_id FROM page_admin WHERE uid = <UID> AND type = 'Application' 
+1
source

You can also query the endpoint /me/accounts in the Graph API ( http://graph.facebook.com/me/accounts ). This endpoint lists all user pages and applications. You can then iterate over this list and check where the category Application .

0
source

All Articles