我正在尝试通过Typescript使用Firebase Cloud Functions在Google表格中添加新的“表格”标签。我用了教程 https://gist.github.com/CodingDoug/ffc4f050cc489a0280eb7f4cbe36af07作为参考。以下代码显示了我希望它如何工作的示例。如何做到这一点,以便可以使用Firebase Cloud Functions在Google表格中“创建”新的“表格”标签?
let values = [
[
'exampleData11','exampleData12'
], [
'exampleData21','exampleData22'
],
//...
];
const resource = {
values,
};
await authPromise
await sheets.spreadsheets.values.update({
auth: auth,
spreadsheetId: spreadsheetId,
// add sheet named 'exampleSheet'
range: 'exampleSheet',
valueInputOption: 'RAW',
resource,
})