kvk_set_api_key | R Documentation |
This function sets the specified KvK API key for the current R session
using Sys.setenv()
. The key will be available until the session ends.
kvk_set_api_key(api_key)
api_key |
A string containing the API key. |
The function sets the API key using Sys.setenv()
, making
it available for the current session only.
To store your API key permanently across R sessions, add the following line to your .Renviron file:
KVK_API_KEY=l7xxYourActualApiKeyHere1234567890abcdef
You can edit your .Renviron file by running:
usethis::edit_r_environ()
After adding the key, restart R for the changes to take effect.
Invisibly returns TRUE
if the key was set.
# Set the API key for the current session
kvk_set_api_key("abcd1234")
# To store permanently, add this line to .Renviron:
# KVK_API_KEY=your_actual_api_key_here
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.