Unable to publish sample open graph as per instructions

620 Views Asked by At

Followed exact instructions as per : http://developers.facebook.com/docs/beta/opengraph/tutorial/#publish

and am getting 'error occurred' error

What could be going on? the code is as follows:

================================================================

<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# test_app: 
http://ogp.me/ns/apps/test_app#"> 
<meta property="fb:app_id" content="129xxxxxxxxxxxx" /> 
<meta property="og:type" content="test_app:recipe" /> 
<meta property="og:title" content="Stuffed Cookies" /> 
<meta property="og:image" content="http://x.example.com/cookedrcp.jpg" /> 
<meta property="og:description" content="The Turducken of Cookies" /> 
<meta property="og:url" content="http://apps.facebook.com/test_app/index.php"> 

<script type="text/javascript">
function postCook()
{
    FB.api('/me/test_app:cook' + 
                '?recipe=http://apps.facebook.com/test_app/index.php','post',
                function(response) {
        if (!response || response.error) {
                alert('Error occured');
        } else {
            alert('Post was successful! Action ID: ' + response.id);
            }
    });
}
</script>
</head> 

<body> 
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
    FB.init({ 
        appId:'129xxxxxxxxxxxx', cookie:true, 
        status:true, xfbml:true, oauth:true
    });
    </script>

    <fb:add-to-timeline></fb:add-to-timeline>

    <h3>
        <font size="30" face="verdana" color="grey">
            Stuffed Cookies
        </font> 
    </h3> 
    <p>
        <img title="Stuffed Cookies" 
                        src="http://x.example.com/cookedrcp.jpg" 
                        width="550"/><br />
    </p>       

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

=====================================================================

I have already created the open graph as per the sample page e.g. cook a recipe.

Any help will be greatly appreciated.

1

There are 1 best solutions below

0
On

I have a feeling you didn't get a valid access_token for the user. In the documentation (https://developers.facebook.com/docs/beta/opengraph/tutorial/#publish) it says your user needs to be already authenticated to your app. Make sure the current user is authenticated by calling FB.getLoginStatus() prior to calling the FB.api().