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.

Since Facebook added Page Admin roles on pages (http://developers.facebook.com/docs/reference/api/page/), when getting the tokens via graph.facebook.com/me/accounts?access_token=XXXX, it lists:

*"perms": [

        "ADMINISTER",
        "EDIT_PROFILE",
        "CREATE_CONTENT",
        "MODERATE_CONTENT",
        "CREATE_ADS",
        "BASIC_ADMIN"

     ]*

How do we know if these have changed after getting a page access token - so for example: if a user loses their administrator role after I get the token, how do we check for that?

share|improve this question

1 Answer

I believe your best bet is polling. If you're in a position where you need to know permissions, GET me/accounts again to see what the permissions are.

This tends to be the approach that I use - in my app, I rebuild relationships between tokens and accounts once per day.

Your other option is catching errors - if myusersapp/insights fails, you assume that they've lost permissions and update the relationship. The problem that you'll face here is that insights go down every now and again, and you won't be able to detect permissions to new pages this way.

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.