spreadsheets.batchUpdate
和 spreadsheets.values.batchUpdate
之类的调用可以在一次调用中执行多个更新操作。
我在 https://developers.google.com/sheets/api/limits 上阅读了有关 google sheet api 使用限制的信息,但尚不清楚这些调用是否算作一个或多个请求。你能解释一下吗?
谢谢
最佳答案
在 spreadsheets.batchUpdate
和 spreadsheets.values.batchUpdate
处,即使 batchUpdate
的一批请求中包含多个请求,该请求也只使用一个 API。
例如,当 batchUpdate
的请求体中包含 10 个请求并且请求体由 batchUpdate
运行时,则只使用一个 API。
关于批量更新中的最大请求数,我从未调查过。但是根据我的经验,当我在一个 batchUpdate 中使用了 100,000 个请求时,我可以确认脚本运行良好。
如果我误解了你的问题,我深表歉意。
关于google-sheets-api - batchUpdate 调用如何计入使用限制?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56537155/