On September 4, 2024, we announced the deprecation of the Instagram Basic Display API.

Starting December 4, 2024, all requests to the Instagram Basic Display API will return an error message. We recommend that you migrate your app to the Instagram API to avoid any disruption to your services.

Visit our News for Developers blog post to learn more.

メディアの子

アルバムメディアの画像と動画のメディアのコレクションを表します。

作成

この操作はサポートされていません。

読み取り

GET /{media-id}/children

アルバムメディアの画像と動画のメディアのコレクションを取得します。

要件

リクエストの構文

GET https://graph.instagram.com/{media-id}/children
  ?access_token={access-token}

クエリ文字列パラメーター

リクエストに以下のクエリ文字列パラメーターを追加します。

キー

access_token
必須
文字列

アプリユーザーのInstagramユーザーアクセストークン

fields
コンマ区切りリスト

各メディアノードのフィールド拡張機能による戻り値の結果セットで取得したいメディアフィールドのコンマ区切りリスト。

応答

リクエストしたデータを含むJSON形式のオブジェクト。

{
  "data": [],
  "paging": {}
}

応答の内容

プロパティ

data

アルバムメディアの画像と動画のメディアの配列。

paging

ページングカーソルと次/前のデータセット取得URLを含んでいるオブジェクト。

cURLの例

リクエスト

curl -X GET \
  'https://graph.instagram.com/17896450804038745/children?access_token=IGQVJ...'

応答

{
  "data": [
    {
      "id": "17880997618081620"
    },
    {
      "id": "17871527143187462"
    }
  ],
  "paging": {
    "cursors": {
      "after": "MTAxN...",
      "before": "NDMyN..."
      },
    "previous": "https://graph.faceb...",
    "next": "https://graph.faceb..."
  }
}

更新

この操作はサポートされていません。

削除

この操作はサポートされていません。