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.

Help! I'm trying to connect my blog and Facebook through OG. I have Wordpress running on my server. I have it set up now so that the user authenticates and then clicks a button to share the page. I want it so once they authenticate, Wordpress will automatically POST to OG about what they've read. In header.php, I set the body tag so when it loads, it will execute this:

<?php if (is_single()) { ?>
<script>
function load()
{
      FB.api(
        '/me/my_blog_int:read?post=<?php the_permalink() ?>',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Post was successful! Action ID: ' + response.id);
           }
        });
}
</script>
<?php } ?>

this is the top of the body section on my header.php

<body <?php body_class(); ?> onload="load()"> 
<div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : 'MY-APP-ID-IS-HERE', // App ID
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });
    };

    // Load the SDK Asynchronously
    (function(d){
      var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
      js = d.createElement('script'); js.id = id; js.async = true;
      js.src = "//connect.facebook.net/en_US/all.js";
      d.getElementsByTagName('head')[0].appendChild(js);
    }(document));
  </script>

  <fb:add-to-timeline></fb:add-to-timeline>

What do I do?? All I get is the Error occured message. The way in which the button is clicked works perfectly, its just not the functionality I want. Please let me know if you need any more code or information. And if you're wondering... Yes, I have the rest of the FB code, I just didn't post it as this segment seems to be causing the problem.

share|improve this question
from the response try to get what is the error using response.error. – UVM Apr 10 '12 at 4:38
I actually got it. No clue what it was, but it's working now. – Sam Clark Apr 10 '12 at 4:39

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.