I deploy a wep app with script.google.com to only get current datetime and don't use any Action in quota table. Quota: https://script.google.com/dashboard/quota
My code
function doGet() {
var dateTime = currentDateTime();
return ContentService.createTextOutput(dateTime);
}
function currentDateTime() {
return Utilities.formatDate(new Date(), "GMT", "yyyy-MM-dd'T'HH:mm:ss'Z'");
}
I have a question: How many of requests limit if i don't use any Action in quota table? Thanks!