这是交易:我已经从 OmegaHat 存储库安装了 RGoogleDocs 包,并且在安装过程中一切正常,但是当我尝试加载特定文档(电子表格)时,它表明我未经授权!
我做了:
# installation
install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R")
library(RGoogleDocs)
auth <- getGoogleAuth("username@gmail.com", "password")
con <- getGoogleDocsConnection(auth)
docs <- getDocs(con)
dtf <- getDocContent("documentname", con)
Error: Unauthorized
这里有趣的是我可以列出所有文档(我有权这样做),但我无权加载任何文档!O_o 如果我键入names(docs)
文件的名称出现,但我无法获取它们的内容!同样代表官方帮助页面上所述的“电子表格方法” :
sheets.con <- getGoogleDocsConnection(getGoogleAuth("username@gmail.com", "password", service = "wise"))
> a <- getDocs(sheets.con)
Error in getDocs(sheets.con) :
problems connecting to get the list of documents