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 have experienced a problem with facebook open graph (the cook action and recipe object).here is my url http://www.webcoachbd.com/tester.html When i click "Cook" it shows an alert "Error occurred [object Object]". I have seen the related topics and tried those,but problem not solved. This is my tester.html

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"
  xmlns:fb="https://www.facebook.com/2008/fbml"> 
 <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# rejoanxxxx: http://ogp.me/ns/fb/rejoanxxxx#">
<meta property="fb:app_id" content="12xxx" /> 
<meta property="og:type"   content="rejoanxxxx:recipe" /> 
<meta property="og:url"    content="http://www.webcoachbd.com/tester.html" /> 
<meta property="og:title"  content="Sample Recipe" /> 
<meta property="og:image"  content="http://www.webcoachbd.com/images/animl136.jpg" /> 


<script type="text/javascript">
function postCook()
{
  FB.api(       '/me/rejoanxxxx:cook?recipe:http://www.webcoachbd.com/tester.html',
    'post',
    function(response) {
       if (!response) {
          alert('Error occurred : No Response');
       } else if (response.error) {
          alert('Error occurred : ' + response.error);
       } else {
          alert('Cook was successful! Action ID: ' + response.id);
       }
    });
}
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
  FB.init({
    appId      : '[123xxxxxxxx]', // 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>

<h3>Stuffed Cookies</h3>
<p>
<img title="Stuffed Cookies" 
     src="http://www.webcoachbd.com/images/animl136.jpg" 
     width="550"/>
</p>

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

and application basic setting is App Domains:webcoachbd.com Site URL:http://webcoachbd.com

I check my url (http://www.webcoachbd.com/tester.html) with facebook debugger,do not show any error or warning. Is there are any solution to this problem?Please help.

share|improve this question

2 Answers

When i click "Cook" it shows an alert "Error occurred [object Object]".

The alert method can not display object structures, so you just get [object Object] in that debug attempt.

Use console.log(response.error) instead, and then have a look into your browser’s JavaScript console to see what the actual error is.

share|improve this answer

You have used a colon (:) instead of an equals sign (=) when posting.

Change this: /me/rejoanxxxx:cook?recipe:http...
To this: /me/rejoanxxxx:cook?recipe=http...

share|improve this answer
thanks problem solved. – Rejoanul Alam Sep 24 '12 at 12:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.