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.

So I have this form that is bound to my custom Facebook App. About 15 minutes ago, when I submitted my form, a little box appeared on the test user's timeline, but for some reason, it stopped working.

Here's the code that submits the action to the user's timeline:

<body>

<script>
    function postToFacebook() {
    alert('sup');
        var body = 'Reading Connect JS documentation';

        FB.api('/me/concoursvelirium:complete', 'post', { body: body, message: 'My message is ...' }, function(response) {
          if (!response || response.error) {
            alert('Error occured');
          } else {
            alert('Post ID: ' + response);
          }
        });
    }
    </script>


<div id="fb-root"></div>

I should note that the app seems to register itself on the user's profile, it's just not displaying on the user's timeline. If I head to the user's account settings/apps, I am able to see my new app. If I erase it and resubmit the form, the app comes back. It's just not registering on the user's timeline.

I'm suspecting that I may have changed something on the user's profile? or a tiny difference in my code that I'm not seeing.

Oh! and, I have 3 alerts on my code, 1 when the function is called and 2 that appear depending on if everything went alright or not. But I've never seen the last 2 appear, not even when the form worked correctly. If someone can tell me why I would appreciate it.

Any ideas?

Ty, Axel

share|improve this question

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.