Sparky
Sparky

Reputation: 4879

Let anonymous users upload files to my Google Drive using the Google Drive SDK

I'm building a web app where I need to let users upload files. I want to store the files uploaded by all the users in 'my' central Google Drive. The users shouldn't have to login to their Google Accounts or authorize the app, because they will be uploading to my Google Drive. Is this possible?

Upvotes: 10

Views: 7705

Answers (1)

Claudio Cherubino
Claudio Cherubino

Reputation: 15014

You should use service accounts to store files on behalf of your application:

https://developers.google.com/drive/service-accounts

Upvotes: 6

Related Questions