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 tried to add a facebook comment box to my webpage and I have succeeded but the moderating tools are not showing for the admins that I have selected. This is my code (I don't want to moderate by an app_id):

<html>
<head>
<meta property="fb:admins" content="{admin_id1,admin_id2}"/>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/sv_SE/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="my_url" data-num-posts="10" data-width="470"></div>
</body>
</html>

I get my facebook id through this link: graph.facebook.com/my_username

Anyone know what I'm missing? I read somewhere that sometimes you need to like the page for the admins to work. I have tried that aswell but still not working.

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.