we use a custom script to retrieve data from Bookeo API with UrlFetchApp.fetch. µ Everything went well but today, we have the following error "Service invoked too many times for one day: urlfetch"
We are aware of the limitation of 20.000 calls/day as mentionned here https://developers.google.com/apps-script/guides/services/quotas, but we don't think that we come close to this (maybe 1.000 - 1.500/day max)
The portion of the code where the error happen is
var responseBooking = UrlFetchApp.fetch(urlBooking);
So i'm sure it's related to quota issue
The weird thing is it's working like 1 time / 5-6 try
My questions are :
- has Google changed it's quota limitation? (I didn't see any communication about it)
- Is there a way to see how many calls was made for each service?
- Is there a sort of chat for technical support for Google Apps Script?