diff --git a/app/Services/Social/InstagramAnalytics.php b/app/Services/Social/InstagramAnalytics.php index 42356e1e3..5cd420e70 100644 --- a/app/Services/Social/InstagramAnalytics.php +++ b/app/Services/Social/InstagramAnalytics.php @@ -53,7 +53,7 @@ public function fetchPostMetrics(PostPlatform $postPlatform): array // Per-post metric set differs by content type. Reels/Stories expose // different fields than feed posts. Pick the right set per type. $metrics = match ($postPlatform->content_type) { - ContentType::InstagramReel => 'reach,likes,comments,shares,saved,plays', + ContentType::InstagramReel => 'reach,likes,comments,shares,saved,views', ContentType::InstagramStory => 'reach,impressions,replies', default => 'reach,likes,comments,shares,saved,total_interactions', };