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 can't seem to get moderation working. Please could someone advise where I'm going wrong. I've read quite a few how-to's etc and I can't get it working. I don't think I can see the wood for the tree's!

Under <head>

<html xmlns:og="http://ogp.me/ns#">
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId  : '246253132114045',
      status : true, // check login status
      cookie : true, // enable cookies to allow the server to access the session
      xfbml  : true  // parse XFBML
    });
  };

  (function() {
    var e = document.createElement('script');
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
  }());
</script>

<meta property="og:title" content="Sutton Poker News"/>
<meta property="og:site_name" content="Sutton Poker"/>

Then in the <body>

<fb:comments href="http://paulpitchford.co.uk/suttonpoker/news.asp?ID=<% =news_id %>" num_posts="5"></fb:comments>
            </p></center>

I'd really appreciate it if someone could point me in the right direction.

Kind Regards, Paul.

share|improve this question

1 Answer

I see that you have no og:admins tag. <meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>

See https://developers.facebook.com/docs/reference/plugins/comments/ the Moderation section will be helpful.

Also the <div id="fb-root"></div> should go in the body tag.

share|improve this answer
Can't believe I missed that! Told you I couldn't see the wood for the trees! I'll give it a try. – pitchie Jan 6 '12 at 0:44
Ok, so I did as you requested. Added: <meta property="fb:admins" content="{5815xxxxx}"/> Moved <div id="fb-root"></div> to here: <div id="fb-root"> <center><p> <fb:comments href="paulpitchford.co.uk/suttonpoker/news.asp?ID=<% =news_id %>" num_posts="5"></fb:comments> </p></center> </div> But for some reason it's now disappeared! – pitchie Jan 6 '12 at 0:52
Ok, so basically, it's late and I had the code all over the place. It's working now though. Thanks for the advice. – pitchie Jan 6 '12 at 1:52
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 17:34

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.