Twitter4J:从公开资料中获取今天的推文?

发布于 2024-11-05 02:11:45 字数 49 浏览 0 评论 0原文

我知道您可以获取所有推文和最后 X 条推文,但如何返回过去 24 小时内的每条推文?

I'm aware you can get all tweets and the last X number of tweets but how would I return every tweet for the past 24 hours?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必了 2024-11-12 02:11:45

使用 Twitter 搜索,您可以使用 since: 指定日期范围,并使用 from: 参数来选择它的来源。例如:

http://search.twitter.com/search?from=biz&since=2011-05-04&until=2011-05-05&rpp=20

使用 Twitter4J,您要使用的查询是使用搜索库之一的字符串 from:bizsince:2011-05-04

Using Twitter Search, you can specify a date range using since: and a from: parameter to select who it is coming from. For example:

http://search.twitter.com/search?from=biz&since=2011-05-04&until=2011-05-05&rpp=20

Using Twitter4J, the query you want to use is the string from:biz since:2011-05-04 using one of the search libraries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文