Am using the Facebook Ads API to run ads. For running Mobile App Ads, I need to retrieve the apps which the logged in User is an admin of. I couldn't figure out from the documentation as to how to get this list of apps. Some stack overflow threads (How to get if a user is admin of a page (isAdmin) using the Facebook Graph API?) suggest requesting /me/accounts , but the just returns a list of facebook pages the user is an admin of. Could someone suggest some documentation in this direction?
Asked
Active
Viewed 78 times
2 Answers
0
The Graph API call /me/applications/developer
returns all applications of which the user is an admin.
Read more here: https://developers.facebook.com/docs/graph-api/reference/v2.0/user/applications/developer

Fredrik
- 764
- 1
- 6
- 22
-
This returns applications for which the user is a developer. I want to retrieve apps for which the user is an admin. Any idea on how that is possible? – Paul Victor Raj May 15 '14 at 08:49
0
Doesn’t seem to be possible with the current API v2.0 – but it is with FQL, using the app_role
table:
SELECT application_id FROM app_role
WHERE developer_id = me() AND role = 'administrators'
(And yes, FQL is deprecated, but it will still be around for at least two years. And before they completely shut it off, they will implement query-like features in a future API version according to what I’ve heard from FB employees.)

CBroe
- 91,630
- 14
- 92
- 150