- Вы хотите получить содержимое файла с Google Drive, используя Drive API.
- Файл представляет собой текстовый файл, который не является Документами Google (Документ Google, Электронная таблица, Слайды и т. Д.).
- Вы хотите добиться этого с помощью google-api - php -клиент с php.
- Вы уже можете получать значения из Google Диска с помощью Drive API.
Если мое понимание верно, как насчет этого? ответ? Пожалуйста, используйте alt=media
для загрузки файла.
Модифицированный скрипт:
$file = $service->files->get($fileId);
print "Title: " . $file->getName();
print "Description: " . $file->getDescription();
print "MIME type: " . $file->getMimeType();
$content = $service->files->get($fileId, array("alt" => "media")); // Added
print $content->getBody(); // Added
$service->files->get($fileId)
загружает метаданные файла. Поэтому для загрузки содержимого файла используйте $service->files->get($fileId, array("alt" => "media"))
.
Ссылки:
Если я неправильно понял ваш вопрос и это не то направление, в котором вы хотите, я приношу свои извинения.
Добавлено:
Шаблон 1:
Если вы хотите использовать токен доступа, полученный OAuth2, используйте следующий скрипт. В этом случае используется область действия https://www.googleapis.com/auth/drive.readonly
. При запуске сценария URL-адрес для получения кода авторизации отображается в консоли. Поэтому, пожалуйста, поместите его в свой браузер и авторизуйте область. И введите код браузера в консоль. Таким образом извлекаются токен доступа и refre sh, и скрипт работает.
Пример скрипта:
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Drive API PHP Quickstart');
$client->setScopes(Google_Service_Drive::DRIVE_READONLY);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');
// Load previously authorized token from a file, if it exists.
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
$tokenPath = 'token2.json';
if (file_exists($tokenPath)) {
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
}
// If there is no previous token or it's expired.
if ($client->isAccessTokenExpired()) {
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
}
}
// Save the token to a file.
if (!file_exists(dirname($tokenPath))) {
mkdir(dirname($tokenPath), 0700, true);
}
file_put_contents($tokenPath, json_encode($client->getAccessToken()));
}
return $client;
}
$client = getClient();
$service = new Google_Service_Drive($client);
$fileId = "###"; // Please set the file ID of the text file on Google Drive.
// Retrieve file metadata.
$file = $service->files->get($fileId);
print "Title: " . $file->getName();
print "Description: " . $file->getDescription();
print "MIME type: " . $file->getMimeType();
// Download file.
$content = $service->files->get($fileId, array("alt" => "media"));
file_put_contents("sample.txt", $content->getBody()); // Please set the filename you want.
- Когда вы запускаете этот скрипт, файл загружается и сохраняется как файл. .
Шаблон 2:
Если вы хотите использовать ключ API, используйте следующий скрипт. В этом случае файл должен быть общедоступным. Пожалуйста, будьте осторожны.
Пример сценария:
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Drive API PHP Quickstart');
$client->setDeveloperKey('###'); // Please set your API key.
return $client;
}
$client = getClient();
$service = new Google_Service_Drive($client);
$fileId = "###"; // Please set the file ID of the text file on Google Drive.
// Retrieve file metadata.
$file = $service->files->get($fileId);
print "Title: " . $file->getName();
print "Description: " . $file->getDescription();
print "MIME type: " . $file->getMimeType();
// Download file.
$content = $service->files->get($fileId, array("alt" => "media"));
file_put_contents("sample.txt", $content->getBody()); // Please set the filename you want.
- При запуске этого сценария файл загружается и сохраняется как файл.