web-dev-qa-db-ja.com

Twitter API 1.1でユーザーのタイムラインを認証してリクエストするoAuth

今朝、いくつかのWebサイトで「Twitter REST API v1はもうアクティブではありません。APIv1.1に移行してください。」という恐ろしいエラーを受け取りました。

以前は、javascript/jsonを使用して http://api.Twitter.com/1/statuses/user_timeline.json ?を呼び出していました。タイムラインを表示します。

これはもう利用できないので、新しい1.1 APIプロセスを採用する必要があります。

サードパーティのアプリケーションではなく、HttpWebRequestオブジェクトを使用して次のことを行う必要があります。

  1. oauth key and secretを使用して認証する
  2. 認証された呼び出しを行って、ユーザーのタイムラインを表示するために引き戻します
48
hutchonoid

これが簡単な例でこれを機能させるために私がしたことです。

TwitterからoAuthコンシューマキーとシークレットを生成する必要がありました。

https://dev.Twitter.com/apps/new

タイムラインコールを認証するために、最初に認証オブジェクトをデシリアライズしてトークンを取得し、入力し直しました。

タイムラインの呼び出しは、jsonを読み取るだけでよいので、自分でオブジェクトにデシリアライズすることもできます。

私はこのためにプロジェクトを作成しました: https://github.com/andyhutch77/oAuthTwitterWrapper

Update-asp.net Webアプリとmvcアプリのサンプルデモとnugetインストールの両方を含むようにgithubプロジェクトを更新しました。

// You need to set your own keys and screen name
var oAuthConsumerKey = "superSecretKey";
var oAuthConsumerSecret = "superSecretSecret";
var oAuthUrl = "https://api.Twitter.com/oauth2/token";
var screenname = "aScreenName";

// 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
var timelineFormat = "https://api.Twitter.com/1.1/statuses/user_timeline.json?screen_name={0}&include_rts=1&exclude_replies=1&count=5";
var timelineUrl = string.Format(timelineFormat, screenname);
HttpWebRequest timeLineRequest = (HttpWebRequest)WebRequest.Create(timelineUrl);
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();
    }
}


public class TwitAuthenticateResponse {
    public string token_type { get; set; }
    public string access_token { get; set; }
}
102
hutchonoid

新しいAPIを使用せずにサイトにTwitter投稿を取得するJSのみのソリューションを作成しました-ツイート数も指定できるようになりました: http://goo.gl/JinwJ

2
Jason