如何使用 C# 通过 Twitterizer 发推文

发布于 2024-10-13 07:17:14 字数 331 浏览 2 评论 0原文

我下载了最新的 Twitterizer 。添加了这些参考文献。

using Twitterizer.Core;
using Twitterizer.Data;
using Twitterizer.Entities;
using Twitterizer.Streaming;

现在我需要做什么?我搜索了互联网,但示例很旧,并且 Twitter 可能不支持。有人可以一步一步向我解释吗?

我只想通过我的帐户发推文。

编辑:使用 TweetSharp 解决了问题。我建议您使用 TweetSharp 而不是 Twitterizer 。

i downloaded latest Twitterizer . added these references.

using Twitterizer.Core;
using Twitterizer.Data;
using Twitterizer.Entities;
using Twitterizer.Streaming;

now what do i need to do ? i searched internet but examples are old and probably not supported by twitter. can anbody explain me step by step ?

i just want to tweet via my account.

Edit: Problem solved by using TweetSharp. i suggest you to use TweetSharp instead of Twitterizer .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

多情出卖 2024-10-20 07:17:14

您应该包含 using Twitterizer; 而不是其他内容。

我在下载页面上发布了一个示例应用程序: http://www.twitterizer.net/downloads/ 它是一个 ASP.NET 应用程序,但代码和用法与桌面应用程序相同。

您可以通过调用主类上的方法来访问方法,例如:
Twitter用户
TwitterStatus(推文)
TwitterTimeline

您可能还想查看发布的代码示例: http://www.twitterizer.net /类别/代码示例/

You should include using Twitterizer; and not the others.

I have an example application posted on the downloads page: http://www.twitterizer.net/downloads/ It's an ASP.NET application, but the code and usage will be the same for desktop applications.

You can find access to methods by invoking methods on the main classes, such as:
TwitterUser
TwitterStatus (for tweets)
TwitterTimeline

You may also want to check out the code samples posted: http://www.twitterizer.net/category/code-sample/

谷夏 2024-10-20 07:17:14

您是否看到此页面上的代码示例:
http://www.twitterizer.net/

另请参阅文档页面:
http://www.twitterizer.net/documentation/

API 对我来说似乎有点令人困惑,从来没有听说过这个图书馆。

为什么不使用 Linq to Twitter : http://linqtotwitter.codeplex.com/

它被很多人使用。

Have you see the code examples on this page:
http://www.twitterizer.net/

Also see the docs page:
http://www.twitterizer.net/documentation/

The API seems a little confusing to me, never heard of this library.

Why not use Linq to Twitter : http://linqtotwitter.codeplex.com/

Its used by a lot of people.

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