Reputation: 11
I am pretty new to this so all help you could provide would be greatly appreciated!
I am trying to use Here.com API's and on their example page for Traffic Incidents it has this example:
https://traffic.hereapi.cn/traffic/6.3/incidents.json
?app_id={YOUR_APP_ID}
&app_code={YOUR_APP_CODE}
&bbox=37.586,126.969;37.477,127.106
&criticality=minor
When I go to my account all I have are:
1) APP ID
2) API Key
There is nothing labeled "YOUR APP CODE". Can someone please tell me what they are looking for? Also when I do get the right info do I replace everything AFTER the '=' sign with these ID's or do I put the data between the curly brackets?
Thanks in advance for any guidance you can give...
Upvotes: 0
Views: 93
Reputation: 11
When we log into Developer Portal, we
Generate APP
. This creates your application and shows you application authentication credentials. An APP ID
is generated for identifying your application. Create API Key
and you get your API KEY
.This API KEY
is what you will be using for all your API calls and write it wherever it says {YOUR_API_KEY}
by replacing the complete curly bracket and the content inside it with your API KEY.
For Traffic API, see Traffic Dev Guide
Upvotes: 1