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!