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?