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