0
votes

I have simple script created as macro within google sheets:

function doGet() { return ContentService.createTextOutput('I just successfully handled your GET request.'); }

It works when I am trying testing implementation. After deployment I am getting 404 return code. My generated url is https://script.google.com/macros/s/XXX/exec

I am using just one google account (already know a similar bug with multiple accounts). I have a simple free google account - no gsuite or domain. I tried to log out and log in again. I tried to change permission settings for everyone, just for me - all combinations.

Are there some extra permissions settings or I there some limitations for free accounts?

1
You can refer to this as you have similar case: stackoverflow.com/questions/47026444/… - Monique G.

1 Answers

0
votes

I have found the problem. It was my fault.

Every time when I wanted to deploy changes I just re-deployed the original one. So I realized that I have to create new implementations every time.

So I hope this helps somebody who is new in this domain as I am.