0

我已经设置了参考文档的扣子。我在名为 appsscript.json 的文件中发现了一个错误。(文档中的先决条件)错误是:Expected comma json(514) [8,3] Please tell me resolution。

{
  "timeZone": "Asia/Tokyo",
  "dependencies": {
  },
  "exceptionLogging": "STACKDRIVER",
  "runtimeVersion": "V8"

  "executionApi": {
    "access": "ANYONE"
  }
}
4

1 回答 1

0

下面的代码缺少逗号:

"runtimeVersion": "V8"

替换代码:

"runtimeVersion": "V8",
于 2020-05-20T03:14:00.580 回答