I have recently encountered a problem with adding new tasks to Google-Tasks.
Both the Google Calendar integration (in any browser) and the Google Tasks App (on Android - Galaxy S9+) report an error whenever I try to add a new task.
On Google Calendar I get the error message:
"Reverting to the latest state because there was a problem."
On the Google Tasks App I get the error message:
"Unknown Server Error. Please try again later"
neither of which is very informative about how to solve the problem.
I did some further investigation via the Google-Tasks-API and found that I can still delete and modify tasks, but whenever I try to insert a new task into a list I get the following 403 error message from the API:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "quotaExceeded",
"message": "Quota Exceeded"
}
],
"code": 403,
"message": "Quota Exceeded"
}
}
However, I checked my Google-Tasks API quotas at: https://console.developers.google.com/iam-admin/quotas and I don't seem to be anywhere near any of the usages limits, so I don't really understand why I am getting this error message.
I've been using Google Tasks successfully for several years, including using the Google-Tasks-API to manage bulk updates, but have not changed any of my set-up recently. Is it possible I have stumbled into some global limit on the number of tasks permitted, or a limit on the number of tasks per list? I do have quite a lot of long-running tasks (I have a list to track dev ideas for some software that I maintain).
Any help would be greatly appreciated as I use Google Tasks to organise almost every aspect of my work-life and being without this is rather disruptive to my productivity.
It is rather frustrating that this issue seems to be affecting my normal day-to-day use of Google Calendar Tasks and the Google-Tasks App (I could have coped if it were just my script that uses the API that was not working).