I've read https://developers.google.com/apps-script/guides/services/quotas and understand what the quotas are and how they work.
What I can't figure out is how the quotas apply to web apps, specifically with the doGet
and doPost
functions?
For example:
- Say a web app serves static HTML content via
doGet
-- isScript runtime
the only quota that would apply? - Say a web app services dynamic HTML content via
doGet
that pulls and displays data from a Sheet -- which quotas apply? - What if the web app also accepts form submissions using
doPost
-- then what?
I understand the quotas are applied to the user how owns the web app. I just can't figure out which quotas apply for the web content side of things. Obviously Script runtime
applies but what else?