how to upload to google drive with python

后端 未结 2 1837
迷失自我
迷失自我 2021-01-20 17:38

I want to upload files to Google Drive with Google Script and Python.

I don\'t want to do this with API because it\'s with JSON file and requesting a password to goog

2条回答
  •  礼貌的吻别
    2021-01-20 18:24

    Without letting Google know who you are by authenticating with the API key and connecting your Drive account, this is impossible.

    You can follow the quickstart guide for Python authentication with the Drive REST API here. To upload files, you can use the DRIVE_SERVICE.files().create() method in Python to upload a file to you Drive once you have gone through the authentication. The Upload file documentation can be found here.

    For security reasons you can not upload files using the Drive API without first authenticating your application with your account. With the authentication code provided in the Quickstart tutorial you can authenticate your application with the https://www.googleapis.com/auth/drive.file scope.

提交回复
热议问题