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?
Asked
Active
Viewed 7,634 times
1 Answers
6
You should use service accounts to store files on behalf of your application:

Claudio Cherubino
- 14,896
- 1
- 35
- 42
-
Very nice info, thank you. One thing, what may be inportant from here: "Service accounts are accounts associated with a service or a project. They do not belong to a user and can only be accessed programmatically by the associated application." – Zéiksz Dec 29 '12 at 22:14