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.

Am I able to trigger the post feed to wall on page load? Here is my code so far:

window.fbAsyncInit = function() {
    FB.init({
      appId      : APP_ID, // App ID
      channelUrl : 'APP_URL/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    postToWallHandler();    // ****this isn't working*****  
};

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


// This function triggers "Post to Wall":
function postToWallHandler() {
    var obj = {
      method: 'feed',
      link: 'http://',
      picture: 'http://fbrell.com/f8.jpg',
      name: 'Here is a title',
      caption: 'Here is a message',
      description: 'Here is a description'
    };
    function callback(response) {
      document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
    }

    FB.ui(obj, callback);

}

^ I get an error Uncaught ReferenceError: FB is not defined

I tried to trigger the postToWallHandler() function with a button and it worked, so how can I make this work on page load?

share|improve this question
Solved - it was my popup blocker! – muudless Sep 18 '12 at 7:37

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.