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'm going over Facebook's Open Graph API. All of it seems simple and is explained well except for the fb:admins meta tag. What is this for?

For example:

<meta property="fb:admins" content="USER_ID"/>

Facebook says this: A comma-separated list of either Facebook user IDs or a Facebook Platform application ID that administers this page. It is valid to include both fb:admins and fb:app_id on your page. I'm just not sure what this is.

I guess it is the combination of the ids that is tripping me up.

share|improve this question
Looks like it is an either or on the ids – Codeglot Jun 20 '11 at 22:07

1 Answer

up vote 9 down vote accepted

If you any of the social plugins, fb will look at the fb:admin tag to determine access to admin features directly from your site. For example, if you use the comment box, and you have <meta property="fb:admins" content="USER_ID"/> with your fbid, while logged in, it'll give you access to moderate the comment box. At least, thats my understanding

share|improve this answer
3  
Indeed. And you can add more than one administrator's Facebook UID into the meta tag by adding them comma-separated. – Owen Blacker Jan 30 '12 at 16:40
2  
Actually you would add a seperate fb:admins tag for each user, not comment them as that returns invalid. – Braunson Aug 24 '12 at 2:15

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.