关于 Google 驱动器速率限制的困惑

问题描述 投票:0回答:0

我想将 Google Drive API 用于我的新网络应用程序

我从 Google 文档中找到了以下内容。

Batch multiple calls into a single request using the Google Drive API, especially when changing file metadata for many items that belong to the same user. See Google Drive API.
Do not allow a service account to create more than 400,000 files on behalf of a given user account.

The default quota limits for Drive API are 20,000 calls every 100 seconds, both per user and per project. This limit applies to the sum of read and write calls.

The rate of Drive API write requests is limited—avoid exceeding 3 requests per second of sustained write or insert requests, per account. Note: This rate limit can’t be increased.

我有一个 Google 帐户

[email protected]
,我已经用它注册了我的应用程序
Vishal Cloud App

  1. 用户 A (
    [email protected]
    ) 在我的应用程序上注册并使用 OAuth2 方式授予 Google 驱动器访问权限
  2. 用户 B (
    [email protected]
    ) 在我的应用程序上注册并使用 OAuth2 方式授予 Google 驱动器访问权限

我的应用程序正在代表用户 A 和 B 上传一些文件。

我无法计算出我的应用程序上每个注册用户帐户每秒可以上传多少个文件,没有任何问题。有人可以帮助理解这一点吗?

java rest google-api google-drive-api rate-limiting
© www.soinside.com 2019 - 2024. All rights reserved.