Authentication to Google app script site should not be required -


i made site , set "execute app as" "me" , "who has access app" "anyone, anonymous" still requires authentication sometimes. don't want ever require authentication. how can fix that?

i'm testing google chrome in incognito mode , safari on iphone. forwarded godaddy 302.

the problem occurs when pass parameter in url. effect of have page scroll position , show appropriate hidden content using code has nothing authentication google:

  if(e.parameter.objection) {     var id = e.parameter.objection;     s +=     '<script type="text/javascript">'       +      'goto(' + id + ');'       +      '</script>';     } 

try following links right-clicking them , choosing "open link in incognito mode"

requires authentication:

does not require authentication:

update: discovered behavior has changed since asked question. when redirect , pass in parameter, rather requiring authenticate, page doesn't work @ , gives error google error screen

doesn't require authentication me. may have problem browser cookies, etc.

it works way described, no gotcha with/without parameters.


Comments