Is there any one having problems with Google Drive API?
We are getting this error:
error: {,…}
code: 403
errors: [{domain: \"usageLimits\", reason: \"use
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.