search for: getgoogleauth

Displaying 5 results from an estimated 5 matches for "getgoogleauth".

2009 Aug 14
2
RGoogleDocs: getDocs() - "problems connecting to get the list of documents"
...fully for some time now but something seems to have happened which is preventing me from accessing my data in google spreadsheets. I get the message: "problems connecting to get the list of documents" when I use getDocs, despite being logged in e.g. sheets.con = getGoogleDocsConnection(getGoogleAuth("username", "password", service = "wise")) ts = getWorksheets("formname", sheets.con) รจ Error in getDocs(con) : problems connecting to get the list of documents Does anyone know what might be causing this? Is it maybe a problem at the google end? Matthew...
2009 May 08
1
RGoogleDocs
...ying to use the RGoogleDocs package to import into R the spreadsheets on my Google docs account. I downloaded the latest package (0.2.0) and installed it. I can get a connection going, but it seems that I can only get a doc one... Here is the code I am using: >library(RGoogleDocs) >auth = getGoogleAuth("loginName", "psswrd", service="wise") >sheets.con = getGoogleDocsConnection(auth) >a <- getDocs(sheets.con) I get the following error: Error in checkSlotAssignment(object, name, value) : assignment of an object of class "NULL" is not valid...
2010 Nov 10
3
RGoogleDocs stopped working
...rd omitted): > ss.con <- getGoogleDocsConnection(login=gd.login, password=gd.password, service='wise', error=FALSE) Error: Forbidden Enter a frame number, or 0 to exit 1: getGoogleDocsConnection(login = gd.login, password = gd.password, service = "wise", error = FALSE) 2: getGoogleAuth(..., error = error) 3: getForm("https://www.google.com/accounts/ClientLogin", accountType = "HOSTED_OR_GOOGLE", Email = login, Passw 4: getURLContent(uri, .opts = .opts, .encoding = .encoding, binary = binary, curl = curl) 5: stop.if.HTTP.error(http.header) Selection: 4 Called...
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
...MCmyFxwQewMpzoUAML at mail.gmail.com> Content-Type: text/plain No joy for me. :( I'd had version 0.4-1 installed previously, and re-pulling that URL and reinstalling, plus setting RCurlOptions as specified, do not help for me. Exactly the same behavior. It doesn't matter whether I call getGoogleAuth directly or let getGoogleDocsConnection do it for me. -Harlan On Fri, Nov 19, 2010 at 10:27 PM, Farrel Buchinsky <fjbuch at gmail.com> wrote: > Harlan and Tal have had problems. I had lots too. I spent hours getting it > to work. Terrible process to go through but RGoogleDocs is so...
2009 Jul 09
2
How to Populate List
...d not be found earlier. I just looked back at my path and I see that C:\Program Files\R\Rtools\bin is on the path. RgoogleDocs 0.2-2 is amazing. I can now read data straight into a dataframe.. The fact that I am always reading from realtime data is astounding. sheets.con = getGoogleDocsConnection(getGoogleAuth("fjbuch@gmail.com", "password here", service = "wise")) ts2=getWorksheets("Consents Received",sheets.con)# put the name of the spreadsheet in the inverted commas names(ts2) sheetAsMatrix(ts2$Sheet1,header=TRUE, as.data.frame=TRUE, trim=TRUE) MAGIC Boy oh bo...