3

我有一个使用新的 Google Play 服务的 Android 应用程序。我能够成功地对用户进行身份验证并取回令牌。现在我有了一个令牌,我在服务器上有一个脚本,它使用这个令牌来执行一些操作。当我尝试进行简单的 REST API 调用时,例如:GET https://www.googleapis.com/drive/v2/about

我收到错误“未配置访问”。我检查了我的 API 控制台,并启用了 Drive API 和 Drive SDK。

这不可能吗?还是我以错误的方式解决这个问题?

谢谢

4

1 回答 1

0

您可能缺少范围。这里是全套

"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://docs.googleusercontent.com/",
"https://docs.google.com/feeds/",

也许从让您的应用程序运行开始,然后删除您实际不使用的应用程序。

于 2012-10-29T09:42:10.093 回答