获取主题 Twitter API 的推文

Get tweets of a topic Twitter API

我有一个特定的 Twitter 主题(及其 ID),我想提取 ..

最近的推文

我知道某条推文的主题存储在其“context_annotations”属性中。

在 Twitter API 中有没有一种方法可以提取特定主题的推文,类似于我们提取特定关键字或主题标签的推文?

我查看了搜索查询和推特 api v2,似乎没有发现任何相关问题..

https://github.com/igorbrigadir/twitter-advanced-search

是的,使用:

https://api.twitter.com/2/tweets/search/recent?query=context%3A<domain_id>.<entity_id>

Twitter API 允许使用 context: 运算符按域 ID/实体 ID 对进行搜索。 (不支持仅使用域 ID 进行搜索。)此功能在“查找与特定推文注释相关的推文”部分下 in this documentation page 进一步描述。

例如,如果您想要查找与域 66(兴趣和爱好)和实体 ID 852262932607926273(猫)相关的推文,您将使用:

https://api.twitter.com/2/tweets/search/recent?query=context%3A66.852262932607926273