如何使用 node.js 为主题标签的热门推文请求 url?
How can I request the url for the top tweet of a hashtag using node.js?
我正在尝试制作一个 Discord 机器人,它会在收到请求时 post 成为话题标签的热门推文,但我不知道该怎么做。我在 Twitter API 中找不到任何用于搜索主题标签推文的内容。我怎样才能做到这一点?欢迎使用替代解决方案,但我需要它成为 Discord 机器人。谢谢!
根据 this api reference 判断,他们正在进行自定义查询。我相信您应该能够使用他们的查询选项来获取您想要的数据
你看过search API documentation了吗?这里有一个主题标签示例:
Standalone operators can be used alone or together with any other
operators (including those that require conjunction).
For example, the following query will work because it uses the
#hashtag
operator, which is standalone:
#twitterapiv2
你需要在你的代码中做一些工作来决定什么是“热门推文”——你是指最新的推文、点赞最多的推文、转发最多的推文等等——你必须检查Tweet 对象上的指标决定哪个 Tweet 在你的定义中是“顶级”,API 没有内置任何内容,returns 只是“顶级”Tweet,除非你只想要最新的结果。
我正在尝试制作一个 Discord 机器人,它会在收到请求时 post 成为话题标签的热门推文,但我不知道该怎么做。我在 Twitter API 中找不到任何用于搜索主题标签推文的内容。我怎样才能做到这一点?欢迎使用替代解决方案,但我需要它成为 Discord 机器人。谢谢!
根据 this api reference 判断,他们正在进行自定义查询。我相信您应该能够使用他们的查询选项来获取您想要的数据
你看过search API documentation了吗?这里有一个主题标签示例:
Standalone operators can be used alone or together with any other operators (including those that require conjunction).
For example, the following query will work because it uses the
#hashtag
operator, which is standalone:
#twitterapiv2
你需要在你的代码中做一些工作来决定什么是“热门推文”——你是指最新的推文、点赞最多的推文、转发最多的推文等等——你必须检查Tweet 对象上的指标决定哪个 Tweet 在你的定义中是“顶级”,API 没有内置任何内容,returns 只是“顶级”Tweet,除非你只想要最新的结果。