我们有一个在 Google Apps 域之间进行迁移的应用程序。对于日历迁移,我们使用 Import API ( https://developers.google.com/google-apps/calendar/v3/reference/events/import )。在过去的六个月里,我们做了很多日历迁移。但大约一周前,我们遇到了新的导入 API 错误:
"error"=>
{"errors"=>[
{"domain"=>"usageLimits",
"reason"=>"quotaExceeded",
"message"=>"Calendar usage limits exceeded."}],
"code"=>403,
"message"=>"Calendar usage limits exceeded."
上周我们收到了很多“超出日历使用限制”。来自不同域的用户的错误。根据 Google API 控制台,我们没有达到每日配额限制。对于我们的应用程序,我们使用 2legged 授权。
请帮助我们了解“超出日历使用限制”是什么意思。意思是?我们如何防止这个错误?我们在哪里可以找到有关日历使用限制的信息?