如何设置项目以使用 TweetSharp

发布于 2024-09-03 05:54:12 字数 619 浏览 5 评论 0原文

我正在尝试遵循 Pete Brown 的介绍性 WPF 教程,该教程利用 TweetSharp 库与 Twitter 进行交互。

我已经从 Codeplex (http:// tweetsharp.codeplex.com/)。

无论我添加什么引用,也无论我尝试什么 using 语句,我都无法为 FluentTwitter 类创建对 TwitterService 的引用。

我只是收到编译器错误 - “找不到类型或命名空间”。

现在我注意到 Pete 引用的 TweetSharp.dll 大小为 518KB,但我每个不同下载中包含的 TweetSharp.dll 只有 84kb。 (我已经尝试过几次 - 我在这里得到完整的下载)。

从 Pete 的文章到 TweetSharp 库的链接不再有效 (http://code.google.com /p/tweetsharp/)。

我在这里缺少什么基本元素或者我可能做错了什么?

I am trying to follow Pete Brown's introductory WPF tutorial which makes use of the TweetSharp libraries to interact with Twitter.

I have downloaded what appears to be the latest TweetSharp binaries (and a few others including the ReleaseCandidate) from Codeplex (http://tweetsharp.codeplex.com/).

No matter what references I add and no matter what using statements I try, I cannot create a reference to the TwitterService for the FluentTwitter class.

I simply get the compiler error - "The type or namespace cannot be found".

Now I've noticed that the TweetSharp.dll that Pete references is 518KB but the one contained in each of my different downloads is only 84kb. (I've tried several times - I am getting the full download here).

The link from Pete's article to the TweetSharp libraries, no longer works (http://code.google.com/p/tweetsharp/).

What basic element am I missing here or what could I be doing wrong?

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

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

发布评论

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

评论(3

幽梦紫曦~ 2024-09-10 05:54:12

自该文章发布以来,TweetSharp 已移至 CodePlex,这就是指向 Google 代码的链接已失效的原因。

您需要引用 TweetSharp.dll、TweetSharp.Twitter.dll(以及更好的 Hammock.dll 和 Newtonsoft.json.dll)。

对于使用指令,如果您使用 FluentTwitter 方法:

using TweetSharp.Twitter.Fluent;
using TweetSharp.Twitter.Extensions;
using TweetSharp.Twitter.Model;

如果您使用 TwitterService 方法:

using TweetSharp.Twitter.Model;
using TweetSharp.Twitter.Service;

如果您下载源代码,CodePlex 上还有一些其他示例,包括一些入门应用程序。

TweetSharp moved to CodePlex since that article was posted, which is why the link to Google Code is dead.

You need references to TweetSharp.dll, TweetSharp.Twitter.dll, (and for good measure Hammock.dll, and Newtonsoft.json.dll).

For using directives, if you're using the FluentTwitter approach:

using TweetSharp.Twitter.Fluent;
using TweetSharp.Twitter.Extensions;
using TweetSharp.Twitter.Model;

If you're using the TwitterService approach:

using TweetSharp.Twitter.Model;
using TweetSharp.Twitter.Service;

There are some other examples kicking around on CodePlex including some starter apps if you download the source code.

野鹿林 2024-09-10 05:54:12

我认为现在它在 github https://github.com/danielcrenna/tweetsharp CodePlex 不适用于我?

I think now it's in github https://github.com/danielcrenna/tweetsharp CodePlex didn't work for me?

离鸿 2024-09-10 05:54:12

Tweetsharp 库还在 Codeplex 上吗?上面的链接已经过期了?

或者 Linq to Twitter 是更好的选择吗?我是 Twitter API 的新手,只需要一些简单的代码示例(搜索源、地理位置以及将照片发布到 Twitter)。

Is the Tweetsharp library still on Codeplex? The link above has expired?

Or is Linq to Twitter a better option? I'm new to Twitter API and only need a few simple code examples (Search Feed, Geo Location & Post Photo to Twitter).

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