- user facebook data ( https://graph.facebook.com/btaylor )
- facebook application data ( https://graph.facebook.com/2439131959 )
Is somehow possible to get if user is application administrator in facebook with this in my hands?
Is somehow possible to get if user is application administrator in facebook with this in my hands? |
|||
|
|
|
if your developed application is checking the role of the logged in facebook user or simply your application wants to recognize it's owner or admin, then http://developers.facebook.com/tools/explorer/?method=GET&path=me%2Faccounts should have that application id listed api call:
response sample:
|
|||||||
|
|
To get this kind of information you can use FQL:
|
||||
|
|
|
I just got this to work using the Facebook JS API:
It's using the FB.api method to access the old REST API. This assumes that you've already called FB.init, so make sure that this comes after your init code. Cheers, |
|||
|
|
|
You can get the signed_request and then check if page_admin = 1
|
|||
|
|
I tried to attempted javascript form above and found this method to work as an alternative now that the old restful api is depreciated.
|
|||
|
|