获取帖子评论回复/Get post comment replies

YouTubeapi

About

获取帖子评论回复/Get post comment replies

Documentation

获取帖子评论回复/Get post comment replies

[中文]

用途:

  • 获取帖子评论的回复(二级评论)

参数详解:

必选参数:

continuation_token (string)

  • 作用: 回复的continuation token
  • 获取方式: 从帖子一级评论的响应数据中获取 reply_continuation_token 字段

可选参数:

language_code (string, 可选) - 语言代码,默认 "zh-CN"

country_code (string, 可选) - 国家代码,默认 "US"

need_format (bool, 可选) - 是否格式化数据,默认 true

使用流程:

  1. 先调用 /get_post_comments 获取帖子一级评论
  2. 从一级评论中找到 reply_continuation_token 字段
  3. 使用该 token 调用本接口获取该评论的所有回复
  4. 如果还有更多回复,使用返回的 continuation_token 继续获取

返回数据 (need_format=true):

  • comments: 回复评论列表
    • comment_id: 评论ID
    • content: 评论内容文本
    • published_time: 发布时间
    • like_count: 点赞数
    • author: 作者信息
  • continuation_token: 下一页token(如果有更多回复)

价格:

  • $0.001 USD / 请求

[English]

Purpose:

  • Get replies to a post comment (second-level comments)

Parameters:

Required:

continuation_token (string)

  • Purpose: Reply continuation token
  • How to get: Extract reply_continuation_token from post comment response

Optional:

language_code (string, optional) - Language code, default "zh-CN"

country_code (string, optional) - Country code, default "US"

need_format (bool, optional) - Whether to format data, default true

Usage Flow:

  1. Get post comments via /get_post_comments
  2. Extract reply_continuation_token from a comment with replies
  3. Pass it as continuation_token to this endpoint
  4. Use returned continuation_token for more replies

Returns (need_format=true):

  • comments: Reply comments list
  • continuation_token: Next page token (if more replies)

Price:

  • $0.001 USD / request

[示例/Example]

GET /get_post_comment_replies?continuation_token=xxx&need_format=true

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

Try 获取帖子评论回复/Get post comment replies

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

Open in Playground

Related Models