我正在尝试在我的 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”类型的异常,但未在用户代码中处理
我怎么解决这个问题?