Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app with advanced permission for fanpages.

I was wondering, is there any way possible to add an admin to a fanpage through any API?

share|improve this question

2 Answers

up vote 2 down vote accepted

It's not possible with regular apps, the app must be whitelisted.

{
    "error":
    {
        "message": "(#100) App must be on whitelist",
        "type": "OAuthException",
        "code": 100
    }
}
share|improve this answer

Graph api for page

only gives the documentation about fetching admins but there's nothing about adding new admins.

But this should work (though, it gives me "app should be on whitelist" error)

POST admin_id field with valid facebook id to

https://graph.facebook.com/<page_id>/admins,

with a valid page access token (not user access_token)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.