是什么导致heremaps RoutingAPI调用中的系统错误?

时间:2019-01-23 07:02:10

标签: here-api

我正在使用Heremaps计算路线api,以获取两个位置之间的距离和时间。我看到了错误文档,并观察到SYSTEM ERROR:由于技术原因引发的错误。有人可以详细说明可能导致这种错误的原因吗?

1 个答案:

答案 0 :(得分:0)

通常路由API会导致错误,因为文档请求在请求中包含空格-

https://route.ls.hereapi.com/routing/7.2/calculateroute.json
?apiKey={YOUR_API_KEY}
&waypoint0=geo!52.5,13.4
&waypoint1=geo!52.5,13.45
&mode=fastest;car;traffic:disabled

为避免此类错误,请删除请求中的所有空格,如下所示-

https://route.ls.hereapi.com/routing/7.2/calculateroute.json?apiKey={}&waypoint0=geo!52.5,13.4&waypoint1=geo!52.5,13.45&mode=fastest;car;traffic:disabled