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.

My facebook app suddenly stopped sending messages and I didn't change anything. This is my code:

<script type="text/javascript">
          function logResponse(response) {
            if (console && console.log) {
              console.log('The response was', response);
            }
          }

          $(function(){
            // Set up so we handle click on the buttons
            $('#postToWall').click(function() {
              FB.ui(
                {
                  method : 'feed',
                  link   : '<?php echo "$link"; ?>',
                  name   : 'name',
                  caption: ' ',
                  description: 'description',
                  actions: [{
                             'name':'Enter to win',
                             'link':'<?php echo "$link"; ?>'
                           }]
                },
                function (response) {
                  // If response is null the user canceled the dialog
                  if (response != null) {
                    logResponse(response);
                  }
                }
              );
            });

            $('#sendToFriends').click(function() {
              FB.ui(
                {
                  method : 'send',
                  name   : 'name',
                  description: 'description',
                  link   : $(this).attr('data-url')
                },
                function (response) {
                  // If response is null the user canceled the dialog
                  if (response != null) {
                    logResponse(response);
                  }
                }
              );
            });

            $('#sendRequest').click(function() {
              FB.ui(
                {
                  method  : 'apprequests',
                  message : $(this).attr('data-message')
                },
                function (response) {
                  // If response is null the user canceled the dialog
                  if (response != null) {
                    logResponse(response);
                  }
                }
              );
            });
          });
        </script>

The code that you see above and below was taken form a heroku sample app and I just made some modifications and It was sending messages, then it suddenly stop working

<div id="fb-root"></div>
    <script type="text/javascript">
      window.fbAsyncInit = function() {
        FB.init({
          appId      : '<?php echo AppInfo::appID(); ?>', // App ID
          channelUrl : '//<?php echo $_SERVER["HTTP_HOST"]; ?>/app/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
        });

         // Additional initialization code here
      };

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

<?php if ($user_id) { ?>
<div id="share-app" align="center"><!--share app-->
     <br>
              <a href="#" class="facebook-button" id="postToWall">
                <span class="plus">Post to Wall</span>
              </a>

               <a href="#" class="facebook-button speech-bubble" id="sendToFriends" data-url="<?php echo "$link";?>">
                <span class="speech-bubble">Send Message</span>
              </a>

              <a href="#" class="facebook-button apprequests" id="sendRequest" data-message="message">
                <span class="apprequests">Send Invite Requests</span>
              </a>
              <br>
<?php } ?>

I was comparing both codes, the original and the modified one, but I don't see anything wrong.

Do you know why this doesn't work?

share|improve this question
What have you tried sofar? – Glavić Oct 7 '12 at 9:40
Also details of any error codes the FB API is returning would help. – Colm Doyle Oct 7 '12 at 19:57
I just checked the original code and my code, but I don't see anything wrong with the Facebook JavaScript SDK. The feed dialog and the request dialog are working. The send dialog was working but it stopped working and the FB API doesn't return any error code. – user1709330 Oct 8 '12 at 5:34
Would you review my code and tell me if you see anything wrong, please? I have reviewed it many times but I can't understand what's wrong, everything looks fine and it was working before. – user1709330 Oct 8 '12 at 5: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.