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.

The custom action is published successfully but leaves no traces, if I use the Open Graph debugger with the Action ID I get the following message "Sorry, something went wrong. We're working on getting this fixed as soon as we can.". The objects don't give any kind of error or warning on the debugger.

This setup worked fine right after I implemented it this Monday but stopped working suddenly after testing for a while and didn't start working back yet. I've tried with other dev accounts and the same thing happens. If I try with a test account I get the following message when trying to post the action "An unexpected error has occurred. Please retry your request later."

Could it be that Facebook is having problems? Any suggestions?

Here's the code:

window.fbAsyncInit = function() {
    FB.init({
        appId      : MY_APPID,
        channelUrl : MY_CHANNEL_URL,
        status     : true,
        cookie     : true,
        xfbml      : false
    });

    FB.getLoginStatus(function(response) {
        if (response.status === 'connected')
            postAction(MY_ACTION);
    });

};

function postAction(action)
{
    FB.api(
        '/me/' + action,
        'post',
        { MY_RELATED_OBJECT: MY_RELATED_OBJECT_URL },
        function(response) {
            if (!response || response.error)
                alert('Error occurred: ' + response.error.message);
            else
                alert('Action was successful! Action ID: ' + response.id);
        }
    );
}

(function(d){
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
    if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    ref.parentNode.insertBefore(js, ref);
}(document));
share|improve this question
1  
Can you show your code for using custom action on object? – Somnath Muluk Feb 8 at 17:25

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.