Posts under category Facebook Instagram Graph API

We are having trouble fetching all comments from an Instagram post in the Comments API. We are making a request to "/{ig-media-id}/comments" but the result does not have the same information that is displayed on the Instagram platform. How can we consult all the comments on the post "https://www.instagram.com/p/CzlhYcot-G_" ?

In some users API response does not include "caption" tag. There is no problem when receiving REELS on these users.
Is anybody have same issue? If this error based on user activity, could some one give me what should I do?
Here is url example: 17841445065479590/stories?fields=id,comments_count,like_count,media_product_type,media_type,media_url,timestamp,caption
Here is example json form API:
{ "data": [ { "id": "...", "comments_count": 0, "like_count": 0, "media_product_type": "STORY", "media_type": "IMAGE", "media_url": "https://scontent.cdninstagram.com/v/...", "timestamp": "2024-01-15T10:23:49+0000" }, { "id": "...", "comments_count": 0, "like_count": 0, "media_product_type": "STORY", "media_type": "VIDEO", "media_url": "https://scontent.cdninstagram.com/o1/v...", "timestamp": "2024-01-15T10:19:32+0000" } ], "paging": { "cursors": { "before": "...", "after": "..." } } }

In API Graph : {ID_Page}/media?fields=insights.metric(ig_reels_avg_watch_time,impressions,reach,saved,likes,comments,shares,plays,video_views,total_interactions)
When utilizing metrics such as : ig_reels_video_view_total_time ig_reels_avg_watch_time clips_replays_count ig_reels_aggregated_all_plays_count,
the request to the URL in 'NEXT' returns the following error : "error": { "message": "An unknown error has occurred.", "type": "OAuthException", "code": 1, "fbtrace_id": "AQRWB_UW7SYri2SKsiCuw_-" }

Hi Team,
I am getting result if i'm using only one breakdown at a time like age,city or country. {media_id}/insights?metric=follower_demographics&period=lifetime&metric_type=total_value&breakdown=age
However getting error when using more than one breakdown at a time.Please find the example below :-
For Ex:- {media_id}/insights?metric=follower_demographics&period=lifetime&metric_type=total_value&breakdown=age.city,country
o/p :- { "error": { "message": "An unknown error has occurred.", "type": "OAuthException", "code": 1, "fbtrace_id": "A_tJhk6-ZU-jxLXPRLWZ6nr" } }
How can i use more than one breakdown at a time to get data fom api.Could you please share the correct way to fetch multiple breakdowns.