我对使用 Twitterizer 作为组件与 Twitter API 进行通信的任何人都有疑问。

我看到 Twitter 站点最近更新到 API 版本 1.1

我有一个使用 Twitterizer 版本 1 构建的应用程序。

请让我知道 Twitterizer 是否更新了他们的组件以与新的 Twitter API 1.1 兼容

我看到 Twitterizer 有两个更新版本,版本 2.4.2 和版本 3..

最佳答案

twitterizer 提供的源代码的简要介绍表明他们的 API 目标尚未更新。

对此提出质疑的代码行位于 https://github.com/Twitterizer/TwitterizerTwitterizer/Twitterizer2/Core/OptionalProperties.cs 处,从第 50 行开始。这是一个片段。

    public OptionalProperties()
    {
        // Set the default values for the properties
        this.UseSSL = false;
        this.APIBaseAddress = "http://api.twitter.com/1/";
    }

有相当多的源代码看起来需要针对 v1.1 进行检查,但是您可以尝试使用 APIBaseAddress 符号中的版本号从 /1/ 更改为 /1.1/ 来构建库,以查看哪些中断,并且可能发送如果你愿意的话,一个带有更新的拉取请求。

A complete list of the REST API methods for 1.1 is here. (@ dev.twitter.com)

脚注:Twitterizer3 has the same base endpoint URL too. (@ github)

关于c# - 最近 Twitter API 1.1 的 Twitterizer 版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14636861/

10-10 12:47