获取Reddit APP评论回复(二级评论)/Fetch Reddit APP Comment Replies (Sub-comments)

Redditapi

About

获取Reddit APP评论回复(二级评论)/Fetch Reddit APP Comment Replies (Sub-comments)

Documentation

获取Reddit APP评论回复(二级评论)/Fetch Reddit APP Comment Replies (Sub-comments)

[中文]

用途:

  • 获取Reddit APP指定评论下的回复(二级评论/子评论)
  • 当评论节点有 more.cursor 字段时,使用此接口获取该评论的子评论

参数:

  • post_id: 帖子ID,格式如 "t3_XXXXXX"
  • cursor: 评论游标,从评论数据的 more.cursor 字段获取,格式如 "commenttree:ex:(xxx)"
  • sort_type: 排序方式,支持CONFIDENCE, NEW, TOP, HOT, CONTROVERSIAL, OLD, RANDOM

返回:

  • 指定评论下的回复JSON数据,包含:
    • 子评论列表
    • 每个子评论的详细信息(内容、作者、点赞数等)
    • 分页信息

使用步骤:

  1. 先调用 fetch_post_comments 获取帖子的一级评论
  2. 在返回数据中找到有子评论的节点(childCount > 0)
  3. 获取该节点的 more.cursor 值
  4. 使用该 cursor 调用本接口获取子评论

注意:

  • cursor 值来自评论数据的 more.cursor 字段
  • 路径示例: $.data.postInfoById.commentForest.trees[*].more.cursor
  • cursor 格式类似: "commenttree:ex:(RjiJd"

[English]

Purpose:

  • Fetch replies (sub-comments/second-level comments) under a specified Reddit APP comment
  • Use this endpoint when a comment node has more.cursor field to get its sub-comments

Parameters:

  • post_id: Post ID, format like "t3_XXXXXX"
  • cursor: Comment cursor from the more.cursor field in comment data, format like "commenttree:ex:(xxx)"
  • sort_type: Sort method, supports CONFIDENCE, NEW, TOP, HOT, CONTROVERSIAL, OLD, RANDOM

Returns:

  • JSON data of replies under the specified comment, containing:
    • List of sub-comments
    • Detailed information for each sub-comment (content, author, upvotes, etc.)
    • Pagination information

Usage Steps:

  1. First call fetch_post_comments to get top-level comments
  2. Find comment nodes with sub-comments (childCount > 0)
  3. Get the more.cursor value from that node
  4. Use that cursor to call this endpoint to fetch sub-comments

Note:

  • cursor value comes from the more.cursor field in comment data
  • Path example: $.data.postInfoById.commentForest.trees[*].more.cursor
  • cursor format example: "commenttree:ex:(RjiJd"

[示例/Example]

post_id="t3_1qmup73" cursor="commenttree:ex:(RjiJd" sort_type="CONFIDENCE" need_format=false

Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

Try 获取Reddit APP评论回复(二级评论)/Fetch Reddit APP Comment Replies (Sub-comments)

Test this model in the Sandbase Playground with your own prompts.

Open in Playground

Related Models