0

Facebook のオープン グラフ (クック アクションとレシピ オブジェクト) で問題が発生しました。ここに私の URL があり ます http://www.webcoachbd.com/tester.html 「クック」をクリックすると、「エラーが発生しました [オブジェクト物体]"。関連トピックを見て試してみましたが、問題は解決しませんでした。これは私の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>

アプリケーションの基本設定は App Domains:webcoachbd.com サイト URL:http://webcoachbd.com です。

Facebook デバッガーで自分の URL (http://www.webcoachbd.com/tester.html) を確認しましたが、エラーや警告は表示されません。この問題の解決策はありますか?助けてください。

4

2 に答える 2

1

投稿時に等号 (=) の代わりにコロン (:) を使用しました。

これを変更します: /me/rejoanxxxx:cook?recipe : http...
これに: /me/rejoanxxxx:cook?recipe = http...

于 2012-09-24T10:06:20.827 に答える
0

「クック」をクリックすると、「エラーが発生しました[オブジェクトオブジェクト]」というアラートが表示されます。

alert メソッドはオブジェクト構造を表示できないため[object Object]、そのデバッグ試行に入るだけです。

代わりに を使用console.log(response.error)し、ブラウザの JavaScript コンソールを調べて、実際のエラーを確認してください。

于 2012-09-24T08:13:49.647 に答える