twitter4j 是否提供搜索 2 个日期之间的推文的功能

发布于 2024-12-12 15:52:17 字数 114 浏览 3 评论 0原文

twitter4j 是否提供搜索 2 个日期之间的推文的功能(例如 2011-10-27 05:30:00 到 2011-10-27 06:30:00)

目前它似乎具有日期的粒度,而不是小时或分钟。

Does twitter4j provide the capability to search tweets between 2 dates (e.g. 2011-10-27 05:30:00 to 2011-10-27 06:30:00)

currently it seems to have the granularity of a date and not hours or minutes.

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

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

发布评论

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

评论(3

眼角的笑意。 2024-12-19 15:52:17

不,在当前版本中无法指定日期和时间。在给定范围内搜索的时间。

这就是 Twitter 搜索 API 的限制:

有关搜索运算符的注释

自始至终

  • 不支持否定(-)运算符。
  • 列表项应以年-月-日或 yyyy-mm-dd 格式输入。
  • 假定为从/到 00:00 UTC。
  • 无法设置为未来。如果直到是将来的日期,您将收到 HTTP 403 错误,并显示以下消息:{"error":"You can not use an 'until:' date in the future"}。如果“since”是将来的时间,您将收到 HTTP 403 错误,并显示以下消息:{"error":"since_id 太新,轮询频率较低"}

No, at the current version there is no way to specify date & time for searching within given range.

And that's the limitation of Twitter search API:

Notes about Search Operators

since and until

  • do not support the negation (-) operator.
  • List item should be entered in the format year-month-day or yyyy-mm-dd.
  • are assumed to be from/to 00:00 UTC.
  • cannot be set into the future. If until is in the future you will receive an HTTP 403 error with the message: {"error":"You cannot use an 'until:' date in the future"}. If since is in the future you will receive an HTTP 403 error with the message: {"error":"since_id too recent, poll less frequently"}
破晓 2024-12-19 15:52:17
Query query=new Query("#sachin");

//Returns tweets with since the given date.  Date should be formatted as YYYY-MM-DD 

query.setSince("2012-02-20");
Query query=new Query("#sachin");

//Returns tweets with since the given date.  Date should be formatted as YYYY-MM-DD 

query.setSince("2012-02-20");
缪败 2024-12-19 15:52:17

query.since() 只能返回几天、一周左右,而不是更多。我认为唯一的选择是使用屏幕抓取工具。

query.since() works only going back a couple of days, a week or so, not more. I think the only option is to use a screen scraper.

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