我正在使用Google Maps Directions Api。我在C#/。NET核心中创建简单的应用程序。我有代码:
using (var webClient = new WebClient())
{
var json = webClient.DownloadString(urlBuild);
var googleApiDirections = GoogleApiDirections.FromJson(json);
}
只有一个URL请求之后:
我明白了:
OVER_QUERY_LIMIT ..
我知道限制(每天2500个,每秒10个),关于TRANSIT就像是4个请求,但我只请求了一次。