Twitter 搜索 API 始终返回 null 地理位置

发布于 2024-12-28 13:18:07 字数 547 浏览 0 评论 0原文

我正在使用 twitter4j java 库对给定的关键字进行 twitter API 搜索。研究工作正常,但返回的所有推文的 geo 字段都设置为 null。 我查看了 Twitter 开发人员 文档 以及那里的所有结果,让 geo 为空。

这是我的 java 代码:

TwitterFactory twitterFactory = new TwitterFactory();
Twitter twitter = twitterFactory.getInstance();
Query query = new Query("query");
query.setRpp(10);
QueryResult result = twitter.search(query);

我列出了所有推文,但没有一个有地理代码。

有什么方法可以获取推文/用户的地理位置吗?

I am using twitter4j java library to make a twitter API search for given keywords. The rearch works fine, but all the tweets returned have the geo field set to null.
I have taken a look to the twitter developers documentation and all te results there, have geo null.

Here is my java code:

TwitterFactory twitterFactory = new TwitterFactory();
Twitter twitter = twitterFactory.getInstance();
Query query = new Query("query");
query.setRpp(10);
QueryResult result = twitter.search(query);

I list all the tweets but none of them has geo code.

Is there any way I can get the geo location of the tweet /user?

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

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

发布评论

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

评论(1

狼亦尘 2025-01-04 13:18:07

似乎是 Twitter 上的问题导致了这种行为。

虽然一些搜索查询对我有用并返回一些坐标(2月1日2012)。

不幸的是,我只能建议等到他们解决问题或查看该问题附带的讨论。

There seems to be a problem at Twitter causing this behaviour.

Although some search queries work for me and return some coordinates (1st of Feb 2012).

Unfortunately what I can only suggest is waiting until they solve the problem or have a look at the discussion attached to that issue.

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