用于 Windows Phone 阅读公共源的简单 Twitter 库
我正在寻找一个简单的 Twitter 库来读取公共 Twitter 源并将其显示在我的 Windows Phone 应用程序中。
之前提出过类似的问题(http://stackoverflow.com/questions/4575693/how-do-i-read-a-public-twitter-feed-using-net-on-windows-phone)和答案之一指向tweetsharp,但这似乎没有(很好)维护并且可用于Windows Phone 7。
您可以推荐任何其他库(适用于wp7)吗?
i'm looking for a simple Twitter library to read public twitter feeds and display them in my windows phone app.
A similar question was asked before (http://stackoverflow.com/questions/4575693/how-do-i-read-a-public-twitter-feed-using-net-on-windows-phone) and one of the answers points to tweetsharp but this doesn't seem to be (well) maintained and available for windows phone 7.
any other libraries (for wp7) out there that you can recommend ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Tweetsharp 应该可以正常工作吗?阅读Tau Sick 撰写的这篇博文 了解如何操作的详细信息。
源代码现在位于 github/danielcrenna/tweetsharp 上,最新更新是在不到两个月前。
Tweetsharp should work just fine? Read this blog post by Tau Sick for details on how.
The source is now on github/danielcrenna/tweetsharp and the latest update was less than two months ago.
只需使用 WebClient 连接到以下类型的提要
http://twitter.com/statuses/user_timeline/user_id_no.rss
然后使用 linq 将数据读入可绑定的可观察集合中。
Just use WebClient to connect to the following kind of feed
http://twitter.com/statuses/user_timeline/user_id_no.rss
Then use linq to read the data into an observable collection that you can bind to.