在Google Sheet API文档上,我看到您可以更新工作表名称,但不能更新电子表格名称。有谁知道是否可以重命名Google Spreadsheet?
答案 0 :(得分:1)
如果我的理解正确,那么这个答案如何?
您可以使用Sheets API更改电子表格名称。更改电子表格名称后,将使用Sheets API的电子表格sheets.batchUpdate方法。端点和请求正文如下。
POST https://sheets.googleapis.com/v4/spreadsheets/### spreadsheetId ###:batchUpdate
{
"requests": [
{
"updateSpreadsheetProperties": {
"properties": {
"title": "### please set the Spreadsheet name ###"
},
"fields": "title"
}
}
]
}
如果我误解了您的问题,而这不是您想要的结果,我深表歉意。