1

Twitter フィードに対して単純な GET 呼び出しを実行しようとしているアプリがありますが、上記のエラーで失敗します。以下のコードを呼び出す前に、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();
4

1 に答える 1

0

わかりました、これはまさにあなたがする必要があることです、私はこれをテストしました、そしてそれは実用的な解決策です:

        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;
        }

また、これを appsettings の web または app.config に追加する必要があります。

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

GitHub プロジェクトを更新して、今日の後半にこれを含めます。

https://github.com/andyhutch77/oAuthTwitterTimeline

検索を表示するためにコメントを解除するコードがいくつかあります。プロジェクト名も検索するようになったので、プロジェクト名を再考する必要があるかもしれません。

それが機能しない場合は、Twitter 側でのアプリケーションの制限に問題がある可能性があることに注意してください。また、一部の人々が共有 IP アドレスに問題を抱えていることも読みました。

于 2013-07-01T21:57:07.520 に答える