显示 Twitter 用户的时间线
我已成功完成此操作:http://www.sitepoint。 com/loading-twitter-data-into-android-with-lists/ 教程,并让我的应用程序根据搜索条件显示推文。
我希望我的应用程序做的是显示特定用户的时间线。
从该教程中,我用以下内容替换了我的获取行:
HttpGet("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=android");
我在列表视图中没有得到任何结果。我不需要验证用户名和密码,因为我想做的只是显示时间线,而不是操纵它。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用 Twitter4j,这非常简单:
示例取自 此处
If you are using Twitter4j this is pretty easy :
Sample taken from here
您可以在 https://github.com/robhinds/AndroidTwitterDemo
或
http://automateddeveloper.blogspot.com/2011/06/android-twitter-oauth-authentication.html
使用 twitter4j jar 同样
希望能帮助你...
you can get the answer of ur question at https://github.com/robhinds/AndroidTwitterDemo
or
http://automateddeveloper.blogspot.com/2011/06/android-twitter-oauth-authentication.html
use twitter4j jar for same
hope will help u ...
如果您只想获取用户时间线,那么最好的方法是 -
twitter4j jar 文件 - http:// /twitter4j.org/archive/twitter4j-3.0.3.zip
要注册您的应用程序,请转到 dev.twitter.com
我们可以使用 twitter oauth 获取使用时间线,对于此过程,我们不需要提供任何用户凭据
If you just want to fetch user timeline than the best way is -
twitter4j jar file - http://twitter4j.org/archive/twitter4j-3.0.3.zip
To register your app go to dev.twitter.com
We can fetch the use timeline by using twitter oauth and for this process we don't need to provide any user credentials
Twitter 推出了 Fabric SDK 来满足您的需求。这是一个网站:Twitter Fabric。当您安装 SDK 时,您将在 Android studio 中看到 Fabric Sdk 的新图标。您必须安装 Twitter 工具包并使用嵌入推文。对于用户时间线,您必须使用 UserTimeline。另外,您在 github 上有一些项目可以帮助您了解 Twitter 套件的工作原理:
Github 存储库
Twitter has introduced Fabric SDK for needs like yours. Here is a site: Twitter Fabric. When you install SDK you will have new icon in your Android studio for Fabric Sdk. You have to install Twitter kit and use embed tweets. For user timeline you have to use UserTimeline. Also , you have some project in github that can help you understand how Twitter kit works:
Github repo