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 new to facebook open graph , I followed the tutorial and created a demo at http://www.watchvideosonline.in/22/

I created action type cook and object as recipe in developer page and namespace is cookuuu
i use following code

 <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# cookuuu: http://ogp.me/ns/fb/cookuuu#">
  <meta property="fb:app_id" content="351950231529077" /> 
  <meta property="og:type"   content="cookuuu:recipe" /> 
  <meta property="og:url"    content="http://www.watchvideosonline.in/22/" /> 
  <meta property="og:title"  content="Sample Recipe" /> 
  <meta property="og:image"  content="http://rubyquiz.strd6.com/quizzes/191/image6a.png" /> 

<script type="text/javascript">
  function postCook()
  {
      FB.api(
        '/me/cookuuu:cook?recipe=http://www.watchvideosonline.in/22/',
        'post',
        function(response) {
           if (!response || response.error) {
              alert("error");
           } else {
              alert('Cook was successful! Action ID: ' + response.id);
           }
        });
  }
  </script>

But whenever i press cook button it returns error

Developer dubug tools gives no error or warning too. http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.watchvideosonline.in%2F22%2F

Please help me

share|improve this question
The url you posted (watchvideosonline.in/22) is not reachable. – Nitzan Tomer Apr 26 '12 at 21:17
Consider using console.log(error) instead of the alert(response.error) as the alert doesn't give any useful information other than object [Object]. If you use console.log and Chrome Web Developer Tools you should be able to inspect the error. – Jamie McCrindle Apr 30 '12 at 11: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.