0

我正在尝试在我的 Windows Phone 应用程序中获取我的 Twitter 主页时间线中的最新推文

听到是我的代码:

public void LoadData()
{
     WebClient tweetclient = new WebClient();
     string purl = string.Format("https://api.twitter.com/1.1/statuses/home_timeline.json?screen_name={0}&count=10", App.Tscreenname);
     tweetclient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(tweetclient_DownloadStringCompleted);
     tweetclient.DownloadStringAsync(new System.Uri(purl, UriKind.Absolute));
}

private void tweetclient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
     var response = e.Result;
     var jsonData = JsonConvert.DeserializeObject<RootObject>(response);
}

我的 e.Result 出现错误

错误:System.ni.dll 中出现“System.Net.WebException”类型的异常,但未在用户代码中处理

我怎么解决这个问题?

4

1 回答 1

1

Twitter API 1.1 不允许您进行未经身份验证的 Web 服务调用。您需要使用 OAuth 或 App only 身份验证进行身份验证。
详细信息:https ://dev.twitter.com/docs/api/1.1/overview#Authentication_required_on_all_endpoints

于 2013-07-25T19:51:01.263 回答