Google sheet API - PHP - 创建一个 sheet
Google sheet API - PHP - Create a sheet
我在 php 中使用 google sheet API 创建了一个新的 sheet ,它正在创建新的 sheet 但我希望它可以公开编辑,但只能由特定的 gmail 帐户访问。其中有所有者,
所以可以使用 php 中的 API 创建 google sheet 并允许公开编辑吗?
提前致谢。
google sheet api 的所有写入操作都需要授权
您需要使用 Oauth2 请求用户同意才能使用任何写入功能,即使 sheet 是 public。
creating the spreadsheet with the Sheets API, you need to update the permissions with the Drive API
之后
为此:
- 创建后检索电子表格 ID
- 使用此 ID 作为 Permissions: create
的 fileId
参数
- 在
Request body
中指定
{
"role": "writer",
"type": "anyone"
}
我在 php 中使用 google sheet API 创建了一个新的 sheet ,它正在创建新的 sheet 但我希望它可以公开编辑,但只能由特定的 gmail 帐户访问。其中有所有者,
所以可以使用 php 中的 API 创建 google sheet 并允许公开编辑吗?
提前致谢。
google sheet api 的所有写入操作都需要授权
您需要使用 Oauth2 请求用户同意才能使用任何写入功能,即使 sheet 是 public。
creating the spreadsheet with the Sheets API, you need to update the permissions with the Drive API
之后为此:
- 创建后检索电子表格 ID
- 使用此 ID 作为 Permissions: create 的
- 在
Request body
中指定
fileId
参数
{
"role": "writer",
"type": "anyone"
}