Skip to contents

This is the first step in the authentication process. It securely stores your application's Client ID and Client Secret in your .Renviron file, making them available for your R sessions. You only need to run this once per project/machine.

Usage

li_auth_configure(force = FALSE, verbose = TRUE)

Arguments

force

Logical. If TRUE, will overwrite existing credentials without asking.

verbose

Logical. If TRUE, provides detailed output.

Value

Invisibly returns TRUE on success.

Examples

if (FALSE) { # \dontrun{
# Run this function once to set up your credentials
li_auth_configure()
} # }