Trying to read straight from the url using read_xlsx(url_from_vector_of_urls). It works if I use download.file first, then read in the result.
fileUrls <- c("https://docs.google.com/spreadsheet/pub?key=0AkBd6lyS3EmpdHo5S0J6ekhVOF9QaVhod05QSGV4T3c&output=xlsx",
"https://docs.google.com/spreadsheet/pub?key=phAwcNAVuyj2tPLxKvvnNPA&output=xlsx")
read_xlsx(fileUrls[1])
Error: path
does not exist: ‘https://docs.google.com/spreadsheet/pub?key=0AkBd6lyS3EmpdHo5S0J6ekhVOF9QaVhod05QSGV4T3c&output=xlsx’
Perhaps something to do with enquo ???