如何使用 C# 通过 Twitterizer 发推文
我下载了最新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该包含
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/
您是否看到此页面上的代码示例:
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.