data.next_min_id 获取popular: 按热门排序(默认)newest: 按最新排序data.comments: 评论列表user: 评论者信息text: 评论文本created_at: 评论时间戳comment_like_count: 评论点赞数child_comment_count: 子评论数data.next_min_id: 下一页分页游标(传给下次请求的min_id参数)data.has_more_comments: 是否有更多评论data.comment_count: 评论总数code 参数data.next_min_idnext_min_id 原样传入 min_id 参数(无需预处理,接口会自动反转义)data.has_more_comments 为 falsemin_id 是接口返回的转义 JSON 字符串(如 "{"cached_comments_cursor":"xxx","bifilter_token":"xxx"}"),直接原样传入即可,接口内部会自动反转义处理data.next_min_idpopular: Sort by popular (default)newest: Sort by newestdata.comments: Comment listuser: Commenter infotext: Comment textcreated_at: Comment timestampcomment_like_count: Comment likes countchild_comment_count: Child comments countdata.next_min_id: Next page cursor (use as min_id in next request)data.has_more_comments: Whether has more commentsdata.comment_count: Total comment countcode parameterdata.next_min_id from responsenext_min_id as-is to min_id parameter (no pre-processing needed, the API handles unescaping automatically)data.has_more_comments is falsemin_id is an escaped JSON string returned by the API (e.g., "{"cached_comments_cursor":"xxx","bifilter_token":"xxx"}"), just pass it as-is, the API handles unescaping internallyAuthorization: Bearer ********************curl --location --request GET 'https://api.tikomni.com/api/u1/v1/instagram/v3/get_post_comments?code=DUajw4YkorV&min_id&sort_order' \
--header 'Authorization: Bearer <token>'{}