获取视频二级评论/Get video sub comments

YouTubeapi

About

获取视频二级评论/Get video sub comments

Documentation

获取视频二级评论/Get video sub comments

[中文]

用途:

  • 获取视频二级评论

参数详解:

📌 必选参数:

continuation_token (string)

  • 作用: 回复的continuation token
  • 获取方式: 从一级评论的响应数据中获取 reply_continuation_token 字段
  • 示例: "Eg0SC29hU05CejRxTVFZGAYygwEaUBIaVWd3WmhjUXVGUmJZTlhkUV85VjRBYUFCQWciAggAKhhVQ0pIQko3Ri1uQUlsTUdvbG0wSHU0dmcyC29hU05CejRxTVFZQAFICoIBAggBQi9jb21tZW50LXJlcGxpZXMtaXRlbS1VZ3daaGNRdUZSYllOWGRRXzlWNEFhQUJBZw%3D%3D"

⚙️ 可选参数:

language_code (string, 可选)

  • 作用: 设置回复显示的语言偏好
  • 默认值: "zh-CN"
  • 可用值: "zh-CN", "en-US", "ja-JP", "ko-KR"

country_code (string, 可选)

  • 作用: 设置地区代码
  • 默认值: "US"
  • 可用值: "US", "JP", "GB"

need_format (boolean, 可选)

  • 作用: 是否返回清洗后的精简数据
  • 默认值: true
  • 可用值:
    • false - 返回原始完整数据
    • true - 返回清洗后的精简数据(推荐,默认)

使用流程:

  1. 先调用 /get_video_comments 接口获取一级评论
  2. 从一级评论的响应中找到 reply_continuation_token 字段
  3. 使用该 token 调用本接口获取该评论的所有回复

返回数据结构 (need_format=true):

{
  "comments": [
    {
      "comment_id": "UgwZhcQuFRbYNXdQ_9V4AaABAg.A2B3C4D5E6F7G8H9I0J1",
      "content": "回复内容文本",
      "published_time": "2天前",
      "reply_level": 1,
      "like_count": "5",
      "like_count_a11y": "5 次赞",
      "reply_count": "0",
      "author": {
        "channel_id": "UCxxxxxx",
        "display_name": "@username",
        "channel_url": "https://www.youtube.com/@username",
        "avatar_url": "https://yt3.ggpht.com/...",
        "is_verified": false,
        "is_creator": true,
        "is_artist": false
      }
    }
  ],
  "continuation_token": "下一页token(如果有更多回复)"
}

字段说明:

  • reply_level: 回复层级(1表示二级评论/回复)
  • is_creator: 是否为视频创作者(如果是创作者回复会标记为true)
  • 其他字段与一级评论相同

[English]

Purpose:

  • Get video second-level comment replies

Parameters:

Required:

continuation_token (string)

  • Purpose: Reply continuation token from first-level comment
  • How to get: Extract reply_continuation_token from the first-level comment response

Optional:

language_code (string, optional)

  • Purpose: Language preference for comments
  • Default: "zh-CN"

country_code (string, optional)

  • Purpose: Region code
  • Default: "US"

need_format (boolean, optional)

  • Purpose: Whether to return cleaned simplified data
  • Default: true

Returns:

  • replies: List of reply comments
  • continuation_token: Next page token (if more replies available)

Usage flow:

  1. Get first-level comments via get_video_comments
  2. Extract reply_continuation_token from a comment that has replies
  3. Pass it as continuation_token to this endpoint
  4. For more replies, use the returned continuation_token

[示例/Example]

GET /get_video_comment_replies?continuation_token=xxx&need_format=true

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

Try 获取视频二级评论/Get video sub comments

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

Open in Playground

Related Models