From Usage Limits help page:
This version of the Google Sheets API has a limit of 500 requests per 100 seconds per project, and 100 requests per 100 seconds per user.
Let’s take it apart:
500 requests per 100 seconds per project
- This is applied to my project. I use my project credentials to make each request.100 requests per 100 seconds per user
- When I make a request, I also include the OAuth token of a user that permitted me to update their workbook.
Question about the per-user part:
- Is there anything the user can do themselves (like reach out to Google) to increase the quota just for them? Or is it me who needs to talk to Google to increase the quota for all users of my project simultaneously?
Thanks!