功能节点代码已停止与Google Spreadsheet API配合使用

时间:2019-04-26 04:06:35

标签: google-sheets-api

我的代码正在工作,正在读取和编辑Google Spreadsheet。突然,当我运行该应用程序时,它卡在了我的工作表的getInfo()函数中。

尝试删除等待,但返回值不确定。

'use strict';

const GoogleSpreadSheet = require('google-spreadsheet');
const credentials = require('./client_secret.json');
const doc = new GoogleSpreadSheet('');
const { promisify } = require('util');

module.exports.function = async () =>
{
  console.log(1);
  await promisify(doc.useServiceAccountAuth)(credentials);
  console.log(2);
  const info = await promisify(doc.getInfo)();
  console.log(3);
  //...
}

控制台仅打印1和2。

0 个答案:

没有答案