get_tweet_quotations
Retrieve tweets that quote a specific tweet. Filter by time, include replies, and paginate with a cursor to get up to 20 quoting tweets per page.
Instructions
获取引用推文的推文
Args:
tweetId: 推文ID
sinceTime: 在指定的unix时间戳(秒)之后
untilTime: 在指定的unix时间戳(秒)之前
includeReplies: 是否包含回复,默认为True
cursor: 用于分页的游标,第一页为空字符串
Returns:
包含引用推文的字典,每页返回最多20条引用
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | ||
| tweetId | Yes | ||
| sinceTime | No | ||
| untilTime | No | ||
| includeReplies | No |