I'm writing a simple google app script application which performs some data manipulation depends of the user who requests the page.
According to google documentation object Session has getActiveUser() and getEffectiveUser() which I currently use in order to determine the user. Have a look at the code:
var email = Session.getActiveUser().getEmail();
switch (email){
case 'test@gmail.com':
/*Some code here*/
return true;
case 'test2@gmail.com':
/*Some code here*/
return true;
default:
return false;
}
It looks like that it should work, unfortunately it doesn't work as expected (at least for me).
The code above runs when onOpen trigger fires, and all permissions are set when the user attempts to run this code for the first time.
So, I've decided to perform tracing and found out that Session.getActiveUser().getEmail();
and Session.getEffectiveUser().getEmail();
return wrong emails for the users.
For the 1-st user (me) who created a script Session.getActiveUser().getEmail();
returns correct email, but for all the others it returns my email as well.
Ok, I've decided to replace Session.getActiveUser().getEmail();
with Session.getEffectiveUser().getEmail();
and BOOM - it works for others but doesn't work for me...
How could it be? Any thoughts?
- I've noticed that when I run the code from the ScriptEditor, code works like a charm for all the users, but when It runs when onOpen fires it works unpredictable.
This spreadsheet is shared with several persons.
Any help is appreciated.