I've tested on my local, and everything works fine. Pops out new window and posts. However, since pushing live. The live site facebook popup comes up but fades 2 seconds later, not to show itself again.
Why would this happen? What things do I need to be aware of between local and live sites that would cause a problem like this?
<script src='http://connect.facebook.net/en_US/all.js'></script>
<script type="text/javascript">
FB.init({appId: "11111818811881", status: true, cookie: true});
function postToFeed(description) {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri: 'https://thelivesite.com/dashboard/all/',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'https://www.thelivesite.com/static/images/logo.png',
name: 'LiveSiteName',
caption: 'Meow',
description: description
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<div id='fb-root'></div>
<p style="cursor: pointer; display: inline-block; position: absolute; margin-left: -20px;">
<a onclick='postToFeed("This is a message Cool beans."); return false;'></a>
</p>
<p id='msg'></p>
Thank you for your suggestions and advice in advance.