12

カスタム ストーリーを構築するために、「意見」というカスタム オブジェクトを作成しました。

JavaScript SDK を使用して、自分の Web サイトからアプリ所有のオブジェクトをいくつか追加しようとしています。

Facebookが私に提供するサンプルコードは次のとおりです。

FB.api(
  'me/objects/[namespace]:opinion',
  'post',
  {
    app_id: xxxxxxxx,
    type: "[namespace]:opinion",
    url: "http://samples.ogp.me/331257847005141",
    title: "Sample Opinion",
    image: "https://fbstatic-a.akamaihd.net/images/devsite/attachment_blank.png",
    description: ""
  },
  function(response) {
    // handle the response
  }
);

応答はエラーです (OAuth 例外):

2500: Cannot specify type in both the path and query parameter.

パラメータを削除すると、type別のエラーが発生します。

(#100) The parameter object is required

[namespace]:opinionパスから削除しても同じです。

理由がわかりません。グーグルで調べた後、これについての参照はありません。

なぜこれ?それを解決するために参照できるリソースはありますか?

4

2 に答える 2