从哪里获取 API_NAMES、API_VERSIONS 的名称
Where to get names of API_NAMES, API_VERSIONS
在 Google 的 apiclient
中,您可以通过以下方式构建服务:
service = build(api_name, api_version)
我正在尝试为 GoogleDrive 构建服务,但无法输入正确的信息:
>>> from apiclient.discovery import build
>>> service=build('drive', '1.3')
有没有地方可以找到所有的名称和版本?我将如何为最近的 GoogleDrive API 构建服务?
要获取最新版本,您可以使用__version__
https://github.com/google/google-api-python-client/blob/master/apiclient/init.py
在 Google 的 apiclient
中,您可以通过以下方式构建服务:
service = build(api_name, api_version)
我正在尝试为 GoogleDrive 构建服务,但无法输入正确的信息:
>>> from apiclient.discovery import build
>>> service=build('drive', '1.3')
有没有地方可以找到所有的名称和版本?我将如何为最近的 GoogleDrive API 构建服务?
要获取最新版本,您可以使用__version__
https://github.com/google/google-api-python-client/blob/master/apiclient/init.py