Saves the token to your local keychain under a service called "ecmwfr".
wf_set_key(key, user = "ecmwfr")
It invisibly returns the user.
In systems without keychain management set the option keyring_backend to `file` (i.e. options(keyring_backend = "file")) in order to write the keychain entry to an encrypted file. This mostly pertains to headless Linux systems. The keychain files can be found in ~/.config/r-keyring.
if (FALSE) { # \dontrun{
# set key
wf_set_key(key = "123")
# get key
wf_get_key()
# leave user and key empty to open a browser window to the service's website
# and type the key interactively
wf_set_key()
} # }