Set up a valid authentication to the ‘HERE’ REST APIs and optionally configure a proxy.
In order to use the functionality of the hereR package, application credentials for a HERE project must be provided. The HERE application credentials (API Key) can be obtained for free as follows:
The API key is set for the current R session and will be used to authenticate in the requests to the HERE REST APIs (250K free transactions per month). To set the key, please use:
library(hereR)
set_key("<YOUR API KEY>")
Alternatively, the key can be exported directly to the environment: export HERE_API_KEY="<YOUR-KEY>"
By default, the hereR package does not print messages with information about the requests sent and the data received from to the HERE APIs. If this information should be printed for the current R session, use:
set_verbose(TRUE)
Use set_Verbose(FALSE)
to set the hereR package to be quiet again.
If you are working behind a corporate proxy the requests sent by hereR might fail with timeout errors. In this case, consider setting a global proxy for R. Open the R environment file file.edit('~/.Renviron')
and add your proxy configuration:
http_proxy=http://user:passwd@proxy.dom.com:port/
https_proxy=https://user:passwd@proxy.dom.com:port/
Note: On RStudio Server this file is located at R_HOME/etc/Renviron.site
.
To remove previously set credentials from the current R session use unset_key()
. For overwriting the application credentials use again the set_key()
function.