get_tweet_replies
Retrieve replies to a specific tweet by ID, with optional since/until timestamps to narrow results and cursor pagination to browse through up to 20 replies per page.
Instructions
获取推文的回复
Args:
tweetId: 推文ID(必须是原始推文,非回复)
sinceTime: 在指定的unix时间戳(秒)之后
untilTime: 在指定的unix时间戳(秒)之前
cursor: 用于分页的游标,第一页为空字符串
Returns:
包含回复推文的字典,每页返回最多20条回复
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | ||
| tweetId | Yes | ||
| sinceTime | No | ||
| untilTime | No |