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.

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!

share|improve this question
I'm investigating this at the minute, I suspect that 'domain' might be a reserved parameter in Graph API calls and this is why you're always receiving an error. – Matthew Johnston Jul 26 '12 at 18:11
you are right, I changed it to "thedomain" and it worked! – Tim Linden Jul 26 '12 at 18:21
I looked into it and domain (and domains) are indeed reserved parameters, used by this API: developers.facebook.com/docs/reference/api/domain You should be able to use a different object type name and it won't affect your functionality at all as you can define the nouns separately. I have filed a bug internally to fix the Open Graph wizard to prevent these reserved terms being created. – Matthew Johnston Jul 26 '12 at 20:51

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.