Re: [racket-users] Re: using ryanc's oauth2 package with Google?

2016-02-15 Thread Fred Martin
hahah! I finished my "interacting with Google Drive via Racket" experiment. Basically, it recursively collects subfolders, and then lets you issue a search query over all of them at once. If anyone wants to check it out, the code is here: https://github.com/fgmart/google-drive-racket. I

Re: [racket-users] Re: using ryanc's oauth2 package with Google?

2016-02-15 Thread Ryan Culpepper
On 02/14/2016 12:02 PM, Fred Martin wrote: So... even though I chose "Other" as the client type, my API credentials were created with a secret. I had to copy the secret into my client constructor request. From my reading of the oauth 2 API docs, I thought "installed app" clients weren't

[racket-users] Re: using ryanc's oauth2 package with Google?

2016-02-14 Thread Fred Martin
So... even though I chose "Other" as the client type, my API credentials were created with a secret. I had to copy the secret into my client constructor request. >From my reading of the oauth 2 API docs, I thought "installed app" clients >weren't supposed to have secrets? Anyway at this