Unable to deploy Google Apps Script as a Web App

后端 未结 1 1521
感情败类
感情败类 2021-02-04 22:26

I\'m not able to deploy Google Apps Script as a web app since yesterday. I am getting the following error\"Google

相关标签:
1条回答
  • 2021-02-04 23:09

    Hi all the quick fix is as follow:

    add these lines of code at the end of you doPost() method

    var app = UiApp.getActiveApplication();
    return app;

    This should fix the problem and now it's returning 200 (ok).

    0 讨论(0)
提交回复
热议问题