0

http://developers.facebook.com/docs/beta/opengraph/tutorial/#publishに従って正確な指示に 従いました

「エラーが発生しました」エラーが発生しています

何が起こっているのでしょうか?コードは次のとおりです。

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

<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>

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

サンプルページに従って、レシピを作成するなど、オープングラフをすでに作成しました。

どんな助けでも大歓迎です。

4

1 に答える 1

0

ユーザーの有効な access_token を取得できなかったように感じます。ドキュメント (https://developers.facebook.com/docs/beta/opengraph/tutorial/#publish) では、ユーザーはアプリに対して既に認証されている必要があると書かれています。FB.api() を呼び出す前に FB.getLoginStatus() を呼び出して、現在のユーザーが認証されていることを確認してください。

于 2012-01-05T20:06:37.167 に答える