Google Sheets Scripts suddenly stop working - Error: “Service not found: plus v1”

后端 未结 1 1430

I built a Google Sheets document that has lots of scripts and triggers built into it.

It worked for the last year flawlessly until recently. Now every Function does

相关标签:
1条回答
  • 2020-12-22 01:23

    You or anyone with edit access to your script has enabled Google plus service. This service is deprecated and shutdown. You can modify the manifest, appsscript.json to remove it.

    {
      "timeZone": "America/Denver",
      "dependencies": {
        "enabledAdvancedServices": [{
          "userSymbol": "Drive",
          "serviceId": "drive",
          "version": "v2"
        }]
      },
      "exceptionLogging": "STACKDRIVER",
      "runtimeVersion": "V8"
    }
    
    0 讨论(0)
提交回复
热议问题