I need my users to upload files to my Google Cloud Storage without having to authenticate with Google. These are primarily Windows desktop/laptop users running my application. After reading through the different authentication mechanisms, I see that resumable uploads could be the one I'm looking for. The above page has the REST APIs on how to accomplish this. I have couple questions:
Is this the right method for a third party to upload data into my account without logging into any Google account?
Is there a Python or Java sample which contains the resumable upload related code?
Thanks for your help.