Google Drive User Rate Limit Exceeded different users and different GAE projects

后端 未结 1 787
花落未央
花落未央 2021-01-24 18:10

Is there any one having problems with Google Drive API?

We are getting this error:

error: {,…}
code: 403
errors: [{domain: \"usageLimits\", reason: \"use         


        
相关标签:
1条回答
  • 2021-01-24 18:21

    You need to ensure that you supply the userIp (or quotaUser) parameter on each API request made by your server-side code, as documented in the "Standard Query Parameters" section of the Drive API reference.

    Otherwise, it is possible that all of your API requests are being counted against a single user (since they will all be coming from the same IP address) and therefore it wouldn't be surprising if you start running into request rate limitations.

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