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 am trying to make work the Open Graph. In the administration of the app I have these 2 items:

Action Types: write - note
Object Types: note

I don't know why, but Open Graph still doesn't work. I followed this tutorial, but when I press the button, still getting Error occured.

Relevant code:

     <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# my_url: http://ogp.me/ns/fb/my_url#">
  <meta property="fb:app_id" content="ID" /> 
  <meta property="og:type"   content="note" /> 
  <meta property="og:url"    content="http://google.com" /> 
  <meta property="og:title"  content="Sample text" /> 
  <meta property="og:image"  content="https://s-static.ak.fbcdn.net/images/devsite/attachment_blank.png" /> 

<script type="text/javascript">
  function postCook()
  {
      FB.api(
        '/me/my_url:write',
        'post',
        { note: 'http://google.com' },
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Cook was successful! Action ID: ' + response.id);
           }
        });
  }
</script>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : 'ID', // App ID
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
          });
        };

        // Load the SDK Asynchronously
        (function(d){
          var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
          js = d.createElement('script'); js.id = id; js.async = true;
          js.src = "//connect.facebook.net/en_US/all.js";
          d.getElementsByTagName('head')[0].appendChild(js);
        }(document));
    </script>

    <form>
      <input type="button" value="Write" onclick="postCook()" />
    </form>

I am playing with setup of Open Graph whole day, but still cannot find the right configuration.

Missing I something important? Or how could I debug deeply this basic application?

EDIT The error message says:

code: 2500
message: "Unknown path components: /my_url:write"
type: "OAuthException"

Also, when I open the link (from Facebook developer administration), where should be displayed all actions, there is just:

{
   "data": [

   ]
}
share|improve this question
Log the response object to your browser’s JS console via console.log(response), to see what the actual error is – CBroe Sep 14 '12 at 15:22
Thanks, I added to the original post the error message. – user984621 Sep 14 '12 at 15:28
And my_url is actually what exactly in your code? – CBroe Sep 14 '12 at 15:34
No, there is obviously the correct URL name of the app. – user984621 Sep 14 '12 at 15:37
So it is your app namespace, correct? – CBroe Sep 14 '12 at 15:38
show 5 more comments

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.