创建新的 Apps 脚本项目时出现错误 429 资源已耗尽(例如检查配额)
Error 429 Resource has been exhausted (e.g. check quota) when creating new Apps Script projects
似乎存在通过 Apps 脚本创建的无法识别的 Apps 脚本项目 API 使用配额存在并且已达到我这边(即 IAM 和管理控制台指示所有 API 使用量远低于其限制)。
此处也未指定资源限制:https://developers.google.com/apps-script/guides/services/quotas。
实施 getContent
and create
方法时出错。当时,可能有大约 100 个调用(这是在测试中完成的)。从额外的运行来看,错误似乎是由未指定的使用期限限制(24 小时?)引起的。
需要增加配额,但没有在 IAM 和管理控制台中明确列出,因此很难确定如何做到这一点。
As per above, what is the imposed limit or how may it be otherwise identified, and how may it then be increased (if possible)?
您应该能够从以下 link -
查看特定 Google Apps 脚本 REST API 的配额
https://console.cloud.google.com/iam-admin/quotas?service=script.googleapis.com
我的极限是这样的 -
我敢肯定,根据您的帐户类型,这些可能会有所不同。
Google 没有披露他们限制的所有费率,可能是为了防止规避行为或允许更大的执法流动性。
似乎存在通过 Apps 脚本创建的无法识别的 Apps 脚本项目 API 使用配额存在并且已达到我这边(即 IAM 和管理控制台指示所有 API 使用量远低于其限制)。
此处也未指定资源限制:https://developers.google.com/apps-script/guides/services/quotas。
实施 getContent
and create
方法时出错。当时,可能有大约 100 个调用(这是在测试中完成的)。从额外的运行来看,错误似乎是由未指定的使用期限限制(24 小时?)引起的。
需要增加配额,但没有在 IAM 和管理控制台中明确列出,因此很难确定如何做到这一点。
As per above, what is the imposed limit or how may it be otherwise identified, and how may it then be increased (if possible)?
您应该能够从以下 link -
查看特定 Google Apps 脚本 REST API 的配额https://console.cloud.google.com/iam-admin/quotas?service=script.googleapis.com
我的极限是这样的 -
我敢肯定,根据您的帐户类型,这些可能会有所不同。
Google 没有披露他们限制的所有费率,可能是为了防止规避行为或允许更大的执法流动性。