使用免费的公共基本计划从“这里”获取交通事故数据

时间:2017-01-12 22:09:25

标签: key here-api traffic

我试图获得(例如)Wenden和德国Engelskirchen之间A4的交通数据。我正在使用这个链接方案:

https://traffic.api.here.com/traffic/6.1/incidents.xml?bbox=50.98690,7.40913;50.96840,7.87189&app_id={MY_FREE_API_PLAN_APP_ID}&app_code={MY_FREE_API_PLAN_APP_CODE}

但我得到的xml只说:

<Error_Message><Error>This is not a valid app_id and app_code pair.
Please verify that the values are not swapped between the app_id and
app_code and the values provisioned by HERE (either by your customer
representative or via http://developer.here.com/myapps) were copied
correctly into the request.</Error><Error_description>NA</Error_description>
</Error_Message>

APP_ID和APP_CODE是100%正确的。我想把这些数据用于家庭/此时没有商业用途。

我的数据请求中是否存在错误,或者希望“此处”告诉我这样我必须购买数据?

API计划概述:https://developer.here.com/plans 链接构建此示例:https://developer.here.com/rest-apis/documentation/traffic/topics/request-constructing.html

1 个答案:

答案 0 :(得分:0)

在预感中,我尝试在对路由API的请求中使用围绕app_id和app_code的花括号{ }(因为我没有流量API的凭据)并得到类似的响应。因此,如果您在app_id和app_code周围使用花括号,请将其删除。

例如,这失败了:

https://route.cit.api.here.com/routing/7.2/getlinkinfo.xml?waypoint=43.066628,-71.471729&app_id={DemoAppId01082013GAL}&app_code={AJKnXv84fjrb0KIHawS0Tg}&linkattributes=all

这有效:

https://route.cit.api.here.com/routing/7.2/getlinkinfo.xml?waypoint=43.066628,-71.471729&app_id=DemoAppId01082013GAL&app_code=AJKnXv84fjrb0KIHawS0Tg&linkattributes=all