How to increase Google Sheets v4 API quota limitations

后端 未结 2 2045
长发绾君心
长发绾君心 2020-12-14 03:48

The new Google Sheets API v4 currently has an unlimited read/write quota per day (which is fantastic), but restricted to 500 reads/writes per account per 100 seconds, and 10

相关标签:
2条回答
  • 2020-12-14 04:12
    1. You can use spreadsheets.get to read the entire spreadsheet in a single call, rather than 1 call per request. Alternately, you can use spreadsheets.values.batchGet to read multiple different ranges in a single call, if all you need are the values.

    2. The Drive API offers "push notifications", so you can get notified when changes occur and react to those, instead of polling for them. The latency of the notifications is a little on the slow side, but it gets the job done.

    0 讨论(0)
  • 2020-12-14 04:22

    You can request quota update in Google Cloud Platform and it will be increased to 2500 per account an 500 per user. (about your #4)

    0 讨论(0)
提交回复
热议问题