如何使用新的Twitter API v1.1提取用户的推文?

时间:2013-04-17 19:29:53

标签: c# asp.net twitter

所以我目前正在使用它从用户那里获取一定数量的推文:

public void GetTweets(string username, int tweetCount)
{
    var url = string.Format(
         "http://api.twitter.com/1/statuses/user_timeline.xml?screen_name={0}&count={1}", 
         username, tweetCount);
    XDocument xml = XDocument.Load(url);

    // parse xml
}

使用新的API版本,将不再允许这样做,我将不得不发送带有JSON的GET请求:https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline

我迷路的地方是需要通过OAuth进行身份验证。我需要一个Twitter帐户吗?我已经四处寻找使用.NET执行此操作的示例或教程,并且无法找到任何内容,只需链接回到v1.1的twitter开发页面

有人可以指导我朝正确的方向发展吗?

2 个答案:

答案 0 :(得分:3)

您确实需要一个Twitter帐户,您需要获得“消费者密钥”和“消费者密钥”。您可以通过在https://dev.twitter.com/apps创建应用来实现此目的。

这是IHttpHandler中的一个方法,一旦你拥有了这些方法,你就可以适应它。它为https://api.twitter.com/1/statuses/user_timeline.json端点所做的客户端脚本提供了相同的功能。它在验证后请求该版本的1.1版本,因此它只适用于您的应用程序。

要做比获取推文更复杂的事情,应该使用正确的OAuth握手 - 试试TweetSharp库:https://github.com/danielcrenna/tweetsharp

下面的代码遵循https://dev.twitter.com/docs/auth/application-only-auth中描述的过程,但它没有执行此处描述的所有SSL检查 - https://dev.twitter.com/docs/security/using-ssl

public void ProcessRequest(HttpContext context)
{
    // get these from somewhere nice and secure...
    var key = ConfigurationManager.AppSettings["twitterConsumerKey"];
    var secret = ConfigurationManager.AppSettings["twitterConsumerSecret"];
    var server = HttpContext.Current.Server;
    var bearerToken = server.UrlEncode(key) + ":" + server.UrlEncode(secret);
    var b64Bearer = Convert.ToBase64String(Encoding.Default.GetBytes(bearerToken));
    using (var wc = new WebClient())
    {
        wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
        wc.Headers.Add("Authorization", "Basic " + b64Bearer);
        var tokenPayload = wc.UploadString("https://api.twitter.com/oauth2/token", "grant_type=client_credentials");
        var rgx = new Regex("\"access_token\"\\s*:\\s*\"([^\"]*)\"");
        // you can store this accessToken and just do the next bit if you want
        var accessToken = rgx.Match(tokenPayload).Groups[1].Value;
        wc.Headers.Clear();
        wc.Headers.Add("Authorization", "Bearer " + accessToken);

        const string url = "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=YourTwitterHandle&count=4";
        // ...or you could pass through the query string and use this handler as if it was the old user_timeline.json
        // but only with YOUR Twitter account

        var tweets = wc.DownloadString(url);
        //do something sensible for caching here:
        context.Response.AppendHeader("Cache-Control", "public, s-maxage=300, max-age=300");
        context.Response.AppendHeader("Last-Modified", DateTime.Now.ToString("r", DateTimeFormatInfo.InvariantInfo));
        context.Response.AppendHeader("Expires", DateTime.Now.AddMinutes(5).ToString("r", DateTimeFormatInfo.InvariantInfo));
        context.Response.ContentType = "text/plain"; 
        context.Response.Write(tweets);
    }
}

你可以:

  • 存储为accessToken获取的值供以后使用,您不需要每次都获取它。
  • 在查询字符串上传递参数 - 我认为user_timeline.json接受与v1版本相同的参数。
  • 根据需要设置与缓存相关的HTTP标头 - 必须缓存此响应以避免遇到请求限制。
  • 在服务器上反序列化JSON并使用它做一些不同的事情。但如果你这样做,也许只是直接使用TweetSharp。这实际上是为先前使用API​​ v1的客户端脚本提供相同的JSON数据。

答案 1 :(得分:1)

  

我需要一个Twitter帐户吗?

Twitter支持基于用户的身份验证和基于应用程序的身份验证,因此如果您不想使用您不必使用的Twitter用户帐户进行身份验证。详情如下:

https://dev.twitter.com/docs/auth/application-only-auth

那就是说,我的建议是采用基于用户的身份验证。这是迄今为止通过Twitter进行身份验证的最常见方式,因此可以更轻松地查找文档和代码示例。以下是一些例子:

https://dev.twitter.com/docs/auth/oauth/single-user-with-examples