Twitter搜索API远程服务器返回错误:(401)未经授权

本文关键字:授权 错误 API 搜索 返回 服务器 Twitter | 更新日期: 2023-09-27 18:20:34

我有一个应用程序试图对Twitter提要进行简单的GET调用,但它;s由于上面的错误而失败。在调用下面的代码之前,我能够成功地获得access_token。

string lUrl = "https://api.twitter.com/1.1/search/tweets.json&q=" + HttpUtility.UrlEncode("@typescriptlang");
var headerFormat = "Bearer {0}";
var authHeader = string.Format(
  headerFormat,
  Convert.ToBase64String(Encoding.ASCII.GetBytes(HttpUtility.UrlEncode(access_token)))
);
HttpWebRequest lRequest = HttpWebRequest.CreateHttp(lUrl);
lRequest.Method = "GET";
lRequest.Headers.Add("Authorization", authHeader);
WebResponse lResponse = lRequest.GetResponse();

Twitter搜索API远程服务器返回错误:(401)未经授权

好吧,这正是你需要做的,我已经测试过了,这是一个有效的解决方案:

        private string oAuthConsumerKey = ConfigurationManager.AppSettings["oAuthConsumerKey"];
        private string oAuthConsumerSecret = ConfigurationManager.AppSettings["oAuthConsumerSecret"];
        private string oAuthUrl = ConfigurationManager.AppSettings["oAuthUrl"];     
        private static string searchFormat = ConfigurationManager.AppSettings["searchFormat"];
        private string searchUrl = string.Format(searchFormat, "%23test");
        public string GetSearch()
        {
            // Do the Authenticate
            var authHeaderFormat = "Basic {0}";
            var authHeader = string.Format(authHeaderFormat,
                                           Convert.ToBase64String(
                                               Encoding.UTF8.GetBytes(Uri.EscapeDataString(oAuthConsumerKey) + ":" +
                                                                      Uri.EscapeDataString((oAuthConsumerSecret)))
                                               ));
            var postBody = "grant_type=client_credentials";
            HttpWebRequest authRequest = (HttpWebRequest)WebRequest.Create(oAuthUrl);
            authRequest.Headers.Add("Authorization", authHeader);
            authRequest.Method = "POST";
            authRequest.ContentType = "application/x-www-form-urlencoded;charset=UTF-8";
            authRequest.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
            using (Stream stream = authRequest.GetRequestStream())
            {
                byte[] content = ASCIIEncoding.ASCII.GetBytes(postBody);
                stream.Write(content, 0, content.Length);
            }
            authRequest.Headers.Add("Accept-Encoding", "gzip");
            WebResponse authResponse = authRequest.GetResponse();
            // deserialize into an object
            TwitAuthenticateResponse twitAuthResponse;
            using (authResponse)
            {
                using (var reader = new StreamReader(authResponse.GetResponseStream()))
                {
                    JavaScriptSerializer js = new JavaScriptSerializer();
                    var objectText = reader.ReadToEnd();
                    twitAuthResponse = JsonConvert.DeserializeObject<TwitAuthenticateResponse>(objectText);
                }
            }
            // Do the timeline
            HttpWebRequest timeLineRequest = (HttpWebRequest)WebRequest.Create(searchUrl);
            var timelineHeaderFormat = "{0} {1}";
            timeLineRequest.Headers.Add("Authorization",
                                        string.Format(timelineHeaderFormat, twitAuthResponse.token_type,
                                                      twitAuthResponse.access_token));
            timeLineRequest.Method = "Get";
            WebResponse timeLineResponse = timeLineRequest.GetResponse();
            var timeLineJson = string.Empty;
            using (timeLineResponse)
            {
                using (var reader = new StreamReader(timeLineResponse.GetResponseStream()))
                {
                    timeLineJson = reader.ReadToEnd();
                }
            }
            return timeLineJson;
        }

您还需要将其添加到web或appsettings中的app.config中:

<add key="searchFormat" value="https://api.twitter.com/1.1/search/tweets.json?q={0}"/>

我将在今天晚些时候更新我的GitHub项目,将其包括在内:

https://github.com/andyhutch77/oAuthTwitterTimeline

将有一些代码来取消注释以显示搜索。我可能不得不重新考虑项目名称,现在它也在其中搜索。

请注意,如果它不起作用,你可能会在推特端的应用程序上遇到限制问题。我也读到一些人在共享IP地址上有问题。