Instagram
トピック用のWebhookを設定し、story_insights
フィールドをサブスクリプション登録します。0
ではなく空のデータセットを返します。API応答のタイムスタンプにはオフセットがゼロのUTCが使用され、ISO-8601形式で表現されます。例: 2019-04-05T07:56:32+0000
このAPIは次のエンドポイントで構成されています。
GET /{ig-media-id}/insights
— メディアオブジェクトの指標を取得しますGET /{ig-user-id}/insights
— InstagramビジネスアカウントまたはInstagramクリエイターアカウントの指標を取得します。使用可能な指標、パラメーター、およびアクセス許可の要件については、各エンドポイントのリファレンスドキュメントを参照してください。
InstagramビジネスアカウントまたはInstagramクリエイターアカウントの指標を取得するには、GET /{ig-user-id}/insights
エッジをクエリし、結果として返す指標を指定します。
GET graph.facebook.com/17841405822304914/insights ?metric=impressions,reach,profile_views &period=day
{ "data": [ { "name": "impressions", "period": "day", "values": [ { "value": 32, "end_time": "2018-01-11T08:00:00+0000" }, { "value": 32, "end_time": "2018-01-12T08:00:00+0000" } ], "title": "Impressions", "description": "Total number of times the Business Account's media objects have been viewed", "id": "instagram_business_account_id/insights/impressions/day" }, { "name": "reach", "period": "day", "values": [ { "value": 12, "end_time": "2018-01-11T08:00:00+0000" }, { "value": 12, "end_time": "2018-01-12T08:00:00+0000" } ], "title": "Reach", "description": "Total number of times the Business Account's media objects have been uniquely viewed", "id": "instagram_business_account_id/insights/reach/day" }, { "name": "profile_views", "period": "day", "values": [ { "value": 15, "end_time": "2018-01-11T08:00:00+0000" }, { "value": 15, "end_time": "2018-01-12T08:00:00+0000" } ], "title": "Profile Views", "description": "Total number of users who have viewed the Business Account's profile within the specified period", "id": "instagram_business_account_id/insights/profile_views/day" } ] }
メディアオブジェクトの指標を取得するには、GET /{ig-media-id}/insights
エッジをクエリし、結果として返す指標を指定します。
GET graph.facebook.com/{media-id}/insights ?metric=engagement,impressions,reach
{ "data": [ { "name": "engagement", "period": "lifetime", "values": [ { "value": 8 } ], "title": "Engagement", "description": "Total number of likes and comments on the media object", "id": "media_id/insights/engagement/lifetime" }, { "name": "impressions", "period": "lifetime", "values": [ { "value": 13 } ], "title": "Impressions", "description": "Total number of times the media object has been seen", "id": "media_id/insights/impressions/lifetime" }, { "name": "reach", "period": "lifetime", "values": [ { "value": 13 } ], "title": "Reach", "description": "Total number of unique accounts that have seen the media object", "id": "media_id/insights/reach/lifetime" } ] }