无法在 V4 API 版本中获取所有 Google 电子表格
Unable to get all Google Spreadsheets in V4 API version
我在使用 V4 的 Google 电子表格 REST API 时遇到问题。
我想获取我的应用程序中的所有电子表格,但我无法在任何地方看到 fetch all spreadsheets in V4, while it's available in legacy API。
Google 是否已在 V4 中弃用 API?
在与 Google 博士取得联系后,我得到了答案。
我经历了 List of Spreadsheet
的 V3 和 V4 版本,但正如他们提到的那样,他们已经复制了 API 和 Google Drive
其余的 API 和 mimeType
application/vnd.google-apps.spreadsheet
,
工作 URL 是:https://www.googleapis.com/drive/v3/files?q=mimeType='application/vnd.google-apps.spreadsheet'
我在使用 V4 的 Google 电子表格 REST API 时遇到问题。
我想获取我的应用程序中的所有电子表格,但我无法在任何地方看到 fetch all spreadsheets in V4, while it's available in legacy API。
Google 是否已在 V4 中弃用 API?
在与 Google 博士取得联系后,我得到了答案。
我经历了 List of Spreadsheet
的 V3 和 V4 版本,但正如他们提到的那样,他们已经复制了 API 和 Google Drive
其余的 API 和 mimeType
application/vnd.google-apps.spreadsheet
,
工作 URL 是:https://www.googleapis.com/drive/v3/files?q=mimeType='application/vnd.google-apps.spreadsheet'