本文介绍了如何使用谷歌驱动器API的Python?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在寻找谷歌驱动API文件,但一直没能找到一个好的。我在哪里可以找到它的模块和功能的细节,以上传,下载,获取文件列表等等。

以下是文档:
但我认为你已经找到它了。
有3个api:



  1. 适用于Android

  2. 适用于IOS

  3. HTTP(其他所有内容)

如果您正在编程某些PC软件,请使用的样本



另外还有一个用于的库供您使用http api


I have been searching for google drive api documentation but have not been able to find a good one. Where can I find the details of its modules and functions to upload, download, get the list of files, etc. ??

解决方案

Here is documentation: https://developers.google.com/drive/v3/web/about-sdkBut I think you've already found it.There are 3 api's:

  1. For Android
  2. For IOS
  3. HTTP(For everything else)

If you are programming some PC software you shold use HTTP Rest API. You will send http requests to google server instead of calling functions or modules.Here's samples for python

Also there is library for python to use http api

这篇关于如何使用谷歌驱动器API的Python?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-03 01:14