-2

アプリ、オブジェクト (記事)、アクション (読み取り) を作成しました。テストして公開したいのですが、常に「エラーが発生しました」というアラートを送信します。なぜ?

ヘッドコード

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/fb/article#">
  <meta property="fb:app_id" content="xxxxxxxxxx" />
  <meta property="og:type" content="article" />
  <meta property="og:url" content="object_url" />
  <meta property="og:title" content="Tachnomo" />
  <meta property="og:description" content="Drive car" />
  <meta property="og:image" content="https://s-static.ak.fbcdn.net/images/devsite/attachment_blank.png" />

とジャバスクリプト

<script type="text/javascript">
  function readnews()
  {
      FB.api(
        '/me/news.reads?article=object_url',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Drive was successfully published with ID : ' + response.id);
           }
        });
  }
  </script>
4

1 に答える 1

0

「object_url」は、「object_url」という単語ではなく、エンコードされたURLであると想定されています。

于 2012-07-17T05:31:23.717 に答える