Loading API document API API from server without user interaction

I am making an application in Django that loads files from a form and submits them to google drive. So basically I don't know if the user information or their Google authentication is needed. From the quickstart manual we use authorize_url

to pass code

. However, I don't need oauth

to and I just exchange server-to-server, give a file and then return it with the server credentials. All the guides and docs I have read on google provide information with oauth

. So my question is, is there any chance of not asking the user to use google oauth

and doing it outside?

+1


source to share





All Articles