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));