0

我在我的 Android 应用中使用 Google Drive API:

private Drive buildService(final GoogleCredential credentials) {

        return new Drive.Builder(AndroidHttp.newCompatibleTransport(), new GsonFactory(), credentials)
                .build();

    }

使用 accountManager 获取凭证。它可以在 Android 4.0 及更高版本上完美运行。我可以获取/插入/删除文件等。在下面的 Android 4.0 上运行时,它总是返回:

"error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit Exceeded. Please sign up",
    "extendedHelp": "https://code.google.com/apis/console"
   }
  ],
  "code": 403,
  "message": "Daily Limit Exceeded. Please sign up"
 }
}

这是兼容性问题吗?我正在使用最新的 Drive api 和 google api lib(1.14.1)。谢谢你。

4

1 回答 1

0

您应该在 API 控制台的服务选项卡上启用“Google Drive API”:https ://code.google.com/apis/console/

于 2013-04-18T18:56:34.917 回答