C#WebClient下载字符串零结果在JSON文件中



我对webclient.download(" uri")函数有问题。它起作用了,因为我必须将URL更改为HTTPS(我建议)。如果我将请求URI粘贴到浏览器中,则会获得有效的JSON字符串,如果使用下载string(" URI")方法,则结果是零结果我的代码包含一个键,只是在此处将其删除这是我的代码:

var json = "";
Console.WriteLine("Connect zur Google API Geo Coding API");
locations = locations.Replace(" ", "+");
//request the google geocoding api. limit of 2500 requests/day
String requestUri = "https://maps.googleapis.com/maps/api/geocode/json?address=Serba,++Am+Schwemmberg,+Germany";
Console.WriteLine("Hat geklappt");
//get the json string
 Console.WriteLine("starte den download des json");
 var webClient = new WebClient();
//here it Returns "Zero result"
 json = webClient.DownloadString(requestUri);
 Console.WriteLine("Download des json beendet");

文档指出您必须提供您未没有的key参数。

相关内容

  • 没有找到相关文章

最新更新