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'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.

share|improve this question
Have you changed the site url in App Settings? – ThePCWizard Mar 8 at 7:58
I have not. Am I supposed to? All I have in my settings.py is the FACEBOOK_API_ID, FACEBOOK_API_KEY, and FACEBOOK_API_SECRET. – Modelesq Mar 8 at 17:15

1 Answer

share|improve this answer
THanks. I'll give it a go! – Modelesq Mar 11 at 3:35
@Modelesq did it worked? if yes then please mark this as answer – ThePCWizard Mar 12 at 8:01
No It didn't work. I actually don't have a Settings > Basic option :( – Modelesq Mar 18 at 17:21
@Modelesq u didn't created a facebook app?? this article may help you : loginworks.com/technical-blogs/… – ThePCWizard Mar 19 at 5:47
I created it. Made the changes and the popup still fails to show. – Modelesq Mar 20 at 19:19

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.