4

我正在尝试编写一个 AppEngine 应用程序,它将 Google 文档写入 Google Drive,放入一组特定的文件夹并设置访问权限。我可以使用旧的 DocsList API,但由于它刚刚被弃用,我决定更新我的代码(无论如何我还有一些额外的功能要添加)。

我面临的问题是:当我使用服务帐户并尝试模拟特定用户时,即使我没有用完任何配额,我也会得到一个带有 usageLimits 的 403。

这是我正在使用的代码:

GoogleCredential credentials = new GoogleCredential.Builder()
                 .setTransport(HTTP_TRANSPORT)
                 .setJsonFactory(JSON_FACTORY)
                 .setServiceAccountId("xxxxxxxxxxgserviceaccount.com")
                 .setServiceAccountScopes(DriveScopes.DRIVE)
                 .setServiceAccountPrivateKeyFromP12File(
                                    new java.io.File("xxxx-privatekey.p12"))
                 .setServiceAccountUser("user@xxxxxx.org").build();

我比使用这些凭据来启动我的 Drive 对象:

Drive d = Drive.builder(httpTransport, jsonFactory)
               .setHttpRequestInitializer(credentials)
               .setJsonHttpRequestInitializer(new JsonHttpRequestInitializer() {
                @Override
                public void initialize(JsonHttpRequest request) {
                    DriveRequest driveRequest = (DriveRequest) request;
                    driveRequest.setPrettyPrint(true);
                }
            }).setApplicationName("MYAPPNAME").build();

顺便说一句:我尝试过使用 new Drive(....) 但无论我尝试什么,这都行不通。不断抛出找不到内部方法的错误!

回到这个问题:当我使用 'd' 调用类似 .files().get("SOMEFILEID").execute() 的东西时,我得到一个 403

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

我不明白为什么这不起作用。我在网上看了一整天,但找不到合适的答案。非常感谢一些帮助。

4

2 回答 2

2

所以 pinoyyid 的回答确实有帮助,尽管它不是最终的答案。

我最终像这样解决它:

我使用了我的 AppID (xxxxx.apps.googleusercontent.com) 并将其添加到我的 CPanel https://www.google.com/a/cpanel/[[YOURDOMAIN]]/ManageOauthClients 中,范围如下:

之后,我可以向 Drive 环境发出经过身份验证的请求。现在遇到一堆不同的问题,但 403 得到了解决。

于 2012-09-21T07:46:48.730 回答
1

当 API 调用缺少 Authorization http 标头时,我通常会收到 403。跟踪 http 并查看标头。“配额”消息的基本原理是,如果没有 Auth 标头,您就是匿名的,并且匿名使用的配额为零。

您还可以检查您的应用是否已为两个 Drive API 注册,因为我听说这可能会导致相同的问题。

在内部方法问题上,听起来您使用的是不兼容的库版本。对我来说最有效的方法是删除我使用示例代码下载的所有库,然后使用 Google Eclipse 插件“Google/Add Google APIs...”下载所有最新版本。

于 2012-09-20T01:42:34.177 回答