Как я могу показать содержимое текстового файла с помощью Google Drive Api v3 и php? - PullRequest
1 голос
/ 27 января 2020

Я хочу показать содержимое текстового файла, хранящегося в папке на Google Диске. Я использую Google Drive Api v3. На данный момент я могу показать только имя файла и MimeType, но мне нужен контент. Мне нужен текстовый файл в виде строки. Я не могу найти подходящую функцию.

Пока это часть моего кода

function getClient()
{
    $client = new Google_Client();
    $client->setApplicationName('Google Drive API PHP Quickstart');
    $client->setAuthConfig('credentials.json');
    $client->setDeveloperKey('$myApiKey'); // API key

    // 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 = 'token.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 = $myAuthCode;

            // 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;
}


// Get the API client and construct the service object.
$client = getClient();
    $service = new Google_Service_Drive($client);

[...]

        $file = $service->files->get($fileId); 
    print "Title: " . $file->getName();
    print "Description: " . $file->getDescription();
    print "MIME type: " . $file->getMimeType();

Можете ли вы мне помочь?

1 Ответ

1 голос
/ 27 января 2020
  • Вы хотите получить содержимое файла с 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.
  • При запуске этого сценария файл загружается и сохраняется как файл.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...