Twitter 搜索 API 始终返回 null 地理位置
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是 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.