如何升级到新的Yahoo weather API?

时间:2016-07-25 15:08:35

标签: c# xml weather-api yahoo-weather-api

一段时间以来,我一直在使用Yahoo Weather Api来获取C#中.Net应用程序中统计数据的当前温度和预测值。 显然雅虎更新了他们的api,应用程序无法获取数据。

我正在使用这样的xml文档来获取数据

    XmlDocument doc = new XmlDocument();
    doc.Load("http://xml.yahooapis.com/forecastrss?w=" + WOEID + "&u=c");
    XmlNamespaceManager ns = new XmlNamespaceManager(doc.NameTable);
    ns.AddNamespace("yweather", "http://xml.weather.yahoo.com/ns/rss/1.0");

    XmlNode nod = doc.SelectSingleNode("/rss/channel/link", ns);
    link = nod.InnerText;
    ....more nodes selected....

并且像这样我获取xml节点和值以将它们存储在数据库中。

我必须做出哪些更改才能使应用程序与新的api一起使用?

1 个答案:

答案 0 :(得分:0)

首先,我们需要从

更改我们要求预测的网址
 doc.Load("http://xml.yahooapis.com/forecastrss?w=" + WOEID + "&u=c");

      query="select%20*%20from%20weather.forecast%20where%20woeid%20%3D%20"+ WOEID 
           + "%20and%20u=%27c%27";
      doc.Load("https://query.yahooapis.com/v1/public/yql?q="+query+"&format=xml
                 &env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys");

然后我们需要更改节点路径,因为新的xml文档与旧的文档略有不同。

改变
XmlNode nod = doc.SelectSingleNode("/rss/channel/link", ns);

XmlNode nod = doc.SelectSingleNode("/query/results/channel/link", ns);

一切都应该正常。