# Authenticate using Google credentials stored
# Or, easier if you're not going to share publicly:
# options(gargle_oauth_email = "my_gmail_address@gmail.com")
options(gargle_oauth_email = Sys.getenv("GMAIL_SURVEY"))
googledrive::drive_auth()
googledrive::drive_download(
"PSYCH 490.003 Exercise 3 (Responses)",
path = file.path("../include/csv", "PSYCH-490.003-Exercise-3.csv"),
type = "csv",
overwrite = TRUE
)
message("Data downloaded")