一项请求后,Google Api指示OVER_QUERY_LIMIT

时间:2018-08-29 14:44:59

标签: c# json directions

我正在使用Google Maps Directions Api。我在C#/。NET核心中创建简单的应用程序。我有代码:

using (var webClient = new WebClient()) 
{
    var json = webClient.DownloadString(urlBuild);
    var googleApiDirections = GoogleApiDirections.FromJson(json);
}

只有一个URL请求之后:

https://maps.googleapis.com/maps/api/directions/json?origin=FROM&destination=TO&alternatives=true&key=APIKEY

我明白了:

  

OVER_QUERY_LIMIT ..

我知道限制(每天2500个,每秒10个),关于TRANSIT就像是4个请求,但我只请求了一次。

0 个答案:

没有答案