From 101bdd6d496f83200c6f924979a6bfc6a62d0e5b Mon Sep 17 00:00:00 2001 From: Merlin Unterfinger Date: Tue, 11 Jul 2023 16:11:50 +0200 Subject: [PATCH] Update description to create a new API key to the HERE Platform Closes: #157 --- NEWS.md | 4 ++++ vignettes/authentication.Rmd | 11 +++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/NEWS.md b/NEWS.md index e2c552b..ca2f068 100755 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# version 0.9.1.9000 + +* Update description to create new API key to the new HERE Platform (closes [#157](https://github.com/munterfi/hereR/issues/157)). + # version 0.9.1 * Resubmit to CRAN due to since the package was archived on 2022-12-27 as email to the maintainer was temporarily not deliverable. diff --git a/vignettes/authentication.Rmd b/vignettes/authentication.Rmd index bb5f69a..5c05f41 100755 --- a/vignettes/authentication.Rmd +++ b/vignettes/authentication.Rmd @@ -20,12 +20,11 @@ Set up a valid authentication to the 'HERE' REST APIs and optionally configure a 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: -1. Go to [developer.here.com](https://developer.here.com/) -2. Sign up for a HERE developer account, which automatically creates a new project -3. Click 'REST: Generate APP' -4. Click 'Create API Key' and copy the key +1. Signup for the [HERE Platform](https://platform.here.com) +2. Create new App using the [Credentials Manager](https://platform.here.com/admin/apps?action=new-registration) +3. Select the Credentials tab, then go to "API Keys" and click "Create API key" +4. Copy the API key -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: ```{r set} @@ -33,7 +32,7 @@ library(hereR) set_key("") ``` -Alternatively, the key can be exported directly to the environment: `export HERE_API_KEY=""` +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). Alternatively, the key can be exported directly to the environment: `export HERE_API_KEY=""` ## Information about requests