http://www.google.com/ig/api?weather=
これを使って天気を取得したい
// load xml result from Google weather
var addr = WebUtility.HtmlEncode("http://www.google.com/ig/api?weather=vilnius&hl=lt");
XDocument xd = XDocument.Load(addr);
// navigate to current conditions node
var current_conditions = from currentCond in xd.Root.Descendants("current_conditions")
select currentCond;
// navigate to Forecast info node
var forcastInfo = from forecastinfo in xd.Root.Descendants("forecast_information")
select forecastinfo;
URL を使用してhttp://www.google.com/ig/api?weather=vilnius&hl=lt
いますが、情報は英語で表示されます。問題が見つかりません。助けてください :)