我正在尝试使用 Google Drive API 和 Drive SDK 编写我的第一个应用程序。我正在尝试从谷歌驱动器打开文件。这是我的代码:
if(isset($_GET['state'])){
$json = $_GET['state'];
$obj = json_decode($json);
$idTab = $obj->{'ids'};
$id = $idTab[0];
$file = printFile($service, $id);
}
function printFile($service, $fileId) {
try {
$file = $service->files->get($fileId);
return $file;
} catch (Exception $e) {
print 'Error: '.$e->getMessage();
return null;
}
}
function downloadFile($file) {
$downloadUrl = $file->getDownloadUrl();
if ($downloadUrl) {
$request = new Google_HttpRequest($downloadUrl, 'GET', null, null);
$httpRequest = Google_Client::$io->authenticatedRequest($request);
if ($httpRequest->getResponseHttpCode() == 200) {
return $httpRequest->getResponseBody();
} else {
// An error occurred.
return null;
}
} else {
// The file doesn't have any content stored on Drive.
return null;
}
}
我在 APIs 控制台中启用了 Google Drive API 和 Drive SDK。我已经设置了我的客户端 ID、电子邮件地址、Web 应用程序的客户端密码以及我的 API 密钥和允许的引用者(接受来自 HTTP 的请求)。我已经在 Google Drive SDK 中输入了所有必要的数据,例如客户端 ID、打开 URL。我的其他范围是:[https://www.googleapis.com/auth/userinfo.profile]、[https://www.googleapis.com/auth/drive.install]、[https://www.googleapis. com/auth/drive.file],[https://www.googleapis.com/auth/drive]。
我已经在谷歌商店安装了我的应用程序,我正在尝试通过我的应用程序从我的驱动器中打开文件。我有以下错误:
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured"
}
],
"code": 403,
"message": "Access Not Configured"
}
}
我正在寻找并寻找解决方案,但我找不到。没有什么帮助。所以请谁能帮我解决这个问题?