在没有云平台项目的情况下使用 Google 个工作表 API
Using Google Sheets API without a cloud platform project
我需要将一些数据保存到私人 Google 表格中,作为我的宠物项目的一部分。我已经查看了文档,对于必须为这么小的任务创建一个云平台项目感到有点困惑。有什么方法可以使用 Google Sheets API(或者不使用它就将数据写入 Google Sheets)而不使用 google 云平台?
- 要使用表格 API,您必须使用 Oauth 2.0 识别调用者,最后需要一个 Google 云平台项目。 More information here
- 引用:
When your application requests public data, the request doesn't need to be authorized, but does need to be accompanied by an identifier, such as an API key.
,因此即使您从公开可用的表格中获取数据,您仍然需要识别调用者。
- 要注册和生成凭据(OAuth / API 密钥),需要一个 Google 云平台项目
我需要将一些数据保存到私人 Google 表格中,作为我的宠物项目的一部分。我已经查看了文档,对于必须为这么小的任务创建一个云平台项目感到有点困惑。有什么方法可以使用 Google Sheets API(或者不使用它就将数据写入 Google Sheets)而不使用 google 云平台?
- 要使用表格 API,您必须使用 Oauth 2.0 识别调用者,最后需要一个 Google 云平台项目。 More information here
- 引用:
When your application requests public data, the request doesn't need to be authorized, but does need to be accompanied by an identifier, such as an API key.
,因此即使您从公开可用的表格中获取数据,您仍然需要识别调用者。 - 要注册和生成凭据(OAuth / API 密钥),需要一个 Google 云平台项目