Google Drive SDK和API

时间:2012-10-28 21:50:33

标签: android google-api google-drive-api google-play-services

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

我收到错误'Access Not Configured'。我检查了我的API控制台,并启用了Drive API和Drive SDK。

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

由于

1 个答案:

答案 0 :(得分: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/",

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