Google云端硬盘撤销我的令牌

时间:2015-05-31 14:23:49

标签: java google-drive-api

我是谷歌硬盘的新手,并开始使用教程quickstart。 经过无数次尝试后,我成功运行了该程序。 但是,当我尝试删除文件时,我遇到了权限和授权问题。

Drive service = getDriveService();
service.files().delete("FileId").execute();

所以我决定更改client_secret.json中的URL,

来自:"auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs"

收件人:"auth_provider_x509_cert_url":"https://www.googleapis.com/auth/drive"

希望我现在可以获得删除文件的权限。然而,在再次执行程序后,我没有像以前那样获得互联网浏览器的授权选项卡。

作为上述标签的一个示例,这里是google playground的图片:

asking for permissions in browser

这就是为什么我将我的应用程序连接到谷歌驱动器网站的原因:

enter image description here

此外,我还重新创建了client_secret.json文件。但是,当我现在执行程序时,我只得到这个错误,独立于我正在做的事情。

    Exception in thread "main" com.google.api.client.auth.oauth2.TokenResponseException: 400 Bad Request
{
  "error" : "invalid_grant",
  "error_description" : "Token has been revoked."
}
    at com.google.api.client.auth.oauth2.TokenResponseException.from(TokenResponseException.java:105)
    at com.google.api.client.auth.oauth2.TokenRequest.executeUnparsed(TokenRequest.java:287)
    at com.google.api.client.auth.oauth2.TokenRequest.execute(TokenRequest.java:307)
    at com.google.api.client.auth.oauth2.Credential.executeRefreshToken(Credential.java:570)
    at com.google.api.client.auth.oauth2.Credential.refreshToken(Credential.java:489)
    at com.google.api.client.auth.oauth2.Credential.intercept(Credential.java:217)
    at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:859)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469)
    at main.java.DriveQuickstart.main(DriveQuickstart.java:101)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

所以这两个问题是我应该怎样做才能让教程再次运行以及如何设置权限以便我可以删除文件?

1 个答案:

答案 0 :(得分:4)

现在我发现了问题: 我不得不删除目录“user.home / .credentials / drive-api-quickstart”。 之后,我可以为程序提供所需的授权。 希望有人能帮助这篇文章;)