使用 Twitter API 获取受保护的推文

发布于 2024-11-04 12:03:42 字数 280 浏览 1 评论 0原文

至此,大多数人都知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦归所梦 2024-11-11 12:03:52

就像上面评论说的那样。 Tweetshark 是一条出路。

您首先需要创建一个 Twitter 应用程序。
然后按照此文档进行操作:

http://tweetsharp.codeplex.com/documentation

它将解释如何进行身份验证Twitter 与移动应用程序、silverlight 或普通网站。选对了!

要获取您的推文,您只需使用您使用的 TwitterService 并执行以下操作:

List<TwitterStatus> lstTweets = service.ListTweetsOnHomeTimeline().ToList();

希望这会有所帮助。

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 TwitterServiceyou used and do this:

List<TwitterStatus> lstTweets = service.ListTweetsOnHomeTimeline().ToList();

Hope this helps abit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文