I'm using the example javascript from Facebook, however it seems to be rejecting my domain object:
function postCook()
{
FB.api(
'/me/sitizens:king',
'post',
{ 'domain': 'http://sitizens.com/domain/edgetech.com' },
function(response) {
if (!response || response.error) {
console.log(response);
alert('Error occured'+ response.error);
} else {
alert('Cook was successful! Action ID: ' + response.id);
}
});
}
The error message I get is: code: 2500 message: "Invalid domain: http://sitizens.com/domain/edgetech.com" type "OAuthException"
I've got the "domain" object set in the app, I'm logged in as the developer, and I can't figure out what's gone wrong. The debugger shows the page as having no errors and it reads the meta tags properly. Any pointers would be appreciated!