Quota limit for doGet()

2019-08-31 02:05发布

问题:

I have a custom function with some doGet() calls and I am also using SpreadsheetApp to access my sheet. I have read about the UrlFetch() limit of 20,000 call/day and it is understandable. But I am confused about two things on quota for app script: - Is there any limitation to make call to doGet and spreadsheetapp? - If yes, then for ex. if I have same such 5 sheets, then the limit will be per each sheet or for all 5 sheets in total?

Thanks

回答1:

Last month, Google removed all limits on the quota of total data received by UrlFetch per day per user. If you have a consumer Gmail account, you can make up to 20000 calls per day.

However, you still have a restriction around the total time that your script can run per day. It is 90 minutes for consumer Gmail accounts.

See Quota Limits for UrlFetch and Total script time.