powered by
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.
Sys.setenv()
kvk_set_api_key(api_key)
Invisibly returns TRUE if the key was set.
TRUE
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()
usethis::edit_r_environ()
After adding the key, restart R for the changes to take effect.
if (FALSE) { # interactive() # 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 }
Run the code above in your browser using DataLab