使用 Twitter API 获取受保护的推文
至此,大多数人都知道 Twitter 解决了受保护推文根本不受保护的问题。
我到处寻找,只找到了一些用于身份验证的 oAuth 链接。但我找不到捕获受保护推文的方法。为了让问题变得简单一点。有人可以帮我编写一些代码来检索我自己的私人推文吗?
情况(C# 和/或 Java 会帮助我):
我的自己的推文受到保护,我想获取这些受保护的推文并将它们放入..说:文本文件。实现这一目标的最佳方法是什么?
希望有人能帮忙。
At this point, most of you know that Twitter fixed the problem with Protected tweets not being protected at all.
I'm looking everywhere and have only found some links to oAuth for authentication. But what i can't find is a way to capture protected tweets. To make the question a little bit simpler. Can somebody help me with a bit of code to retrieve my own private tweets?
Situation (C# and/or Java will help me):
My own tweets are protected and i would like to Fetch those protected tweets and put them in.. say: A text file. What is the best way to achieve this?
Hope somebody can help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像上面评论说的那样。 Tweetshark 是一条出路。
您首先需要创建一个 Twitter 应用程序。
然后按照此文档进行操作:
http://tweetsharp.codeplex.com/documentation
它将解释如何进行身份验证Twitter 与移动应用程序、silverlight 或普通网站。选对了!
要获取您的推文,您只需使用您使用的
TwitterService
并执行以下操作:希望这会有所帮助。
Like the comment above said. Tweetshark is the way to go.
You will first need to make a twitter application.
Then follow this documentation:
http://tweetsharp.codeplex.com/documentation
It will explain how to authenticate with Twitter with a mobile app, silverlight or a normal website. Pick correctly !
To get your tweets you simply need to use the
TwitterService
you used and do this:Hope this helps abit.