0

我正在尝试使用以下 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"));
4

1 回答 1

2

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

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

于 2013-09-06T14:32:36.983 回答