验证并请求用户的时间线与Twitter API的OAuth 1.1验证并请求用户的时间线与Twitt

2019-05-08 16:00发布

今天早上我收到了可怕的“Twitter的REST API V1不再有效。 请迁移到API 1.1版“。 错误我的几个网站。

以前我一直在使用JavaScript / JSON使这些调用http://api.twitter.com/1/statuses/user_timeline.json ? 显示的时间线。

由于这是不再可用,我需要采用新的1.1 API的过程。

我需要使用HttpWebRequest的对象不是一个第三方应用来执行以下操作:

  1. 验证使用OAuth密钥和密码
  2. 做一个验证电话给拉了回来,以显示用户时间表

Answer 1:

下面是我做的一个简单的例子来得到这个工作。

我不得不产生从Twitter上的一个OAuth使用者密钥和机密:

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

我第一次反序列化认证对象获得令牌,为了验证时间表呼叫类型回来。

时间轴调用只是读取JSON,因为这是所有我需要做的,你可能会想自己反序列化到一个对象。

:我在创建了项目这个https://github.com/andyhutch77/oAuthTwitterWrapper

更新 -我已经更新了GitHub的项目,包括ASP.NET的Web应用程序和MVC应用程序示例演示和安装的NuGet。

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


Answer 2:

创建一个JS唯一的解决办法让您的网站Twitter的职位,而无需使用新的API -现在可以指定微博的人数太多: http://goo.gl/JinwJ



文章来源: Authenticate and request a user's timeline with Twitter API 1.1 oAuth