Clean credentials for a specific user

ee_clean_user_credentials(
  user = NULL,
  earthengine = TRUE,
  drive = TRUE,
  gcs = FALSE
)

Arguments

user

Character (optional, e.g. data.colec.fbf). The user to remove credentials (See ~/.config/earthengine/). A 'user' represents a set of credentials that certificate a specific Google identity.

earthengine

Logical. Earthengine credential.

drive

Logical. Google Drive credential.

gcs

Logical. Google Cloud Storage credential.

Value

No return value, called for cleaning the path ~/.config/earthengine/

See also

Other ee_clean functions: ee_clean_container(), ee_clean_pyenv()

Examples

if (FALSE) {
library(rgee)

# Delete caducated credentials for a specific user
ee_clean_user_credentials(earthengine=TRUE, drive=TRUE)
ee_users()
}