我正在尝试使用以下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"));
答案 0 :(得分:2)
您需要进行身份验证才能访问Twitter API。
您可能希望从这里开始:https://dev.twitter.com/docs/auth/tokens-devtwittercom,您可能需要考虑为API使用C#包装器,如下所示:https://github.com/danielcrenna/tweetsharp。