401尝试用Linq推特推特到Twitter

时间:2013-04-02 03:11:21

标签: c# twitter-oauth linq-to-twitter

所以我看了Linq到Twitter文档中关于与Oauth的401状态的所有建议,老实说我不知道​​我做错了什么。

var auth = new PinAuthorizer
        {
            Credentials = new InMemoryCredentials
            {
                ConsumerKey = ConfigurationManager.AppSettings["twitterConsumerKey"],
                ConsumerSecret = ConfigurationManager.AppSettings["twitterConsumerSecret"],
                //OAuthToken = ConfigurationManager.AppSettings["twitterOAuthToken"], //don't include this 
                //AccessToken = ConfigurationManager.AppSettings["twitterAccessToken"] //or this for new users. 
            },
            //
            UseCompression = true,
            GoToTwitterAuthorization = pageLink => Process.Start(pageLink),
            GetPin = () =>
                {
                    Console.WriteLine("/nAfter twitter authorizes your application you will be returned here or something/n");
                    Console.Write("Enter Pin here:");
                    return Console.ReadLine();
                }

        };

        auth.Authorize();


        using (var twitterCtx = new TwitterContext(auth, "https://api.twitter.com/1/",
            "https://search.twitter.com/"))
        {

            try
            {
                twitterCtx.Log = Console.Out;
                Console.WriteLine("Please provide tweet text");
                string tweet = Console.ReadLine();

                twitterCtx.UpdateStatus(tweet);
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }


        }

我使用Pin身份验证方法以及单用户方法(使用配置文件提供oauth密钥)运行此操作。我能够查询推文,但我无法更新我的状态或发送直接消息(当我尝试DM时,我收到403禁止)。我提供了一个回调网址(虽然是假的),所以我想不出为什么这不起作用。任何帮助将不胜感激。

PS在Main中运行,不确定是否重要

1 个答案:

答案 0 :(得分:1)

你需要的只是TwitterContext ctor的这个重载,它将使用正确的基本URL:

new TwitterContext(auth)

您正在使用的示例是针对v1.0 URL,而LINQ to Twitter现在位于Twitter API v1.1上。它将默认为正确的基本URL。

如果您正在查询,但在更新和DM上遇到错误,请仔细检查以确保您没有尝试发送相同的文本。这就是为什么我将DateTime.Now附加到测试推文的末尾 - 以保证唯一性。