没有获得Twitter api状态

时间:2013-09-06 14:21:05

标签: c# twitter

我正在尝试使用以下Twitter API,但无法获取用户状态。告诉我这是什么错误?

WebClient connectTwitter = new WebClient();
connectTwitter.DownloadStringCompleted += new  
      DownloadStringCompletedEventHandler(connectTwitter_DownloadStringCompleted);
connectTwitter.DownloadStringAsync(new 
      Uri("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=BarackObama"));

1 个答案:

答案 0 :(得分:2)

您需要进行身份验证才能访问Twitter API。

您可能希望从这里开始:https://dev.twitter.com/docs/auth/tokens-devtwittercom,您可能需要考虑为API使用C#包装器,如下所示:https://github.com/danielcrenna/tweetsharp