如何从 Twitter 搜索响应中解析 JSON
我正在尝试使用 Android Java SDK 编写一个在 Android 设备上显示某个地理位置的推文的应用程序。
我的问题是如何在 Twitter 中创建搜索查询。
其次,一旦我创建了查询,如何解析 JSON 响应?
I am trying to write an application that display tweets in a geographic location on Android device using Android Java SDK.
My question is how do I create the search query in twitter.
Secondly once I have created the query how to I parse the JSON response?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Java 客户端库,例如 JTwitter。 JTwitter 有一个
search()
方法,您可以调用它来进行搜索,它会为您完成所有解析。如果您出于某种原因不喜欢 JTwitter,还有其他客户端库(例如 Twitter4J)。Use a Java client library like JTwitter. JTwitter has a
search()
method you can call to conduct the search, and it does all the parsing for you. There are other client libraries as well (e.g., Twitter4J) if you don't like JTwitter for some reason.