Status Update
Comments
bl...@google.com <bl...@google.com> #2
Generated Metadata
- Summary: The Apps Script application is not working as expected. The first page works, but the second page does not. It is difficult to determine the root cause without additional information.
- Tags:
Additional resources:
https://developers.google.com/apps-script/guides/support/troubleshooting https://developers.google.com/apps-script/support https://stackoverflow.com/.../how-to-debug-or-view-logs-in-google-app-scr... https://stackoverflow.com/.../appscript-webapp-hyperlink-not-working-the-... https://stackoverflow.com/.../serve-separate-html-pages-google-apps-script-...
You can
Description
We have a google script application that call to Class GroupsApp.
Below is the sample code.
var group = GroupsApp.getGroupByEmail(admingroupEmail); var currentEmail = Session.getActiveUser().getEmail(); var isvaliduser = false;
if (group.hasUser(currentUser)) { isvaliduser = true; }
return isvaliduser;
GroupsApp.getGroupByEmail(admingroupEmail) - It is supposed to returned the member of the admingroupEmail but it failed with message "Service invoked too many times for one day: premium groups read."
The Class GroupsApp call is still working till 29/04/2024 18:00 SGT