我在我的 ASP.Net 页面中使用天气 API。
如果我将语言 (hl) 添加到查询中,我将收到此错误:“给定编码中的字符无效。第 1 行,位置 526。”。
它可以在没有语言的 get 参数的情况下工作,但我想本地化输出。
这是我的代码,第二行有错误:
XmlDocument doc = new XmlDocument();
doc.Load("http://www.google.com/ig/api?hl=de&weather=" + location );
这有效:
XmlDocument doc = new XmlDocument();
doc.Load("http://www.google.com/ig/api?weather=" + location );
任何的想法?