https://developer.here.com/documentation/maps/dev_guide/topics/routing.html
{"error":"Unauthorized","error_description":"ApiKey invalid. ApiKey not found."}
我在这里使用 maps api 进行路由,当我以 json 格式传递 key 参数时,它显示 api key error key not found
// Instantiate a map and platform object:
var platform = new H.service.Platform({
'apikey': '{YOUR_APIKEY}'
});
当我将密钥作为简单字符串传递时,地图正在工作我不知道文档或 api 中是否有任何错误,请在您的网站上更新并检查一次
工作代码如下:
// 实例化地图和平台对象:
var platform = new H.service.Platform({
'apikey': 'YOUR_APIKEY'
});
只需删除“{}”,它就可以正常工作了