簡體   English   中英

使用google-api-php-client不再進行文件更新

[英]Files updates no longer works using the google-api-php-client

我有一個非常小的腳本,可以上傳和/或更新文件(大約1年前編寫,從示例中借用了80%的代碼)

自3月以來(使用1.0.0-alpha)以來,代碼沒有重大變化,但可能在5月中旬文件更新停止工作,並引發了內部服務器錯誤,我升級到1.0.4-beta,但未成功:

PHP Fatal error:  Uncaught exception 'Google_Service_Exception' with message 'Error calling PUT https://www.googleapis.com/upload/drive/v2/ [...] (500) Internal Error' in 
google-api-php-client-1.0.4-beta/src/Google/Http/REST.php:80

碼:

$client->setDefer(true);
$request = $service->files->update($update_id,$file);

$media = new Google_Http_MediaFileUpload(
    $client,
    $request,
    'text/plain',
    null,
    true,
    $chunkSizeBytes
);
$media->setFileSize(filesize($csvfile))
$status = false;
$handle = fopen($csvfile, "rb");
while (!$status && !feof($handle)) {
    $chunk = fread($handle, $chunkSizeBytes);
    $status = $media->nextChunk($chunk);
}

文件插入(HTTP POST)仍在工作(使用相同的代碼上傳塊)

有任何想法嗎 ?

我可以使用以下代碼更新文件(先前創建或從模板復制的文件):

     (...)
     require_once 'src/Google/Client.php';
     require_once 'src/Google/Service/Oauth2.php';
     require_once 'src/Google/Service/Drive.php';    
     (...)

     $client = new Google_Client();
     // set scopes ...
     (...)

     $GDrive_service = new Google_Service_Drive($client);
     (...)


     // then I set parameters 
        (...)
        $newTitle = $title ;
        $newDescription = $description ;
        $newMimeType = 'text/csv' ;
        $newFileName = $filename ;
        $service = $GDrive_service ;
        (...)



$updatedFile = updateFile($service, $fileId, $newTitle, $newDescription, $newMimeType, $newFileName, $newRevision) ;


function updateFile($service, $fileId, $newTitle, $newDescription, $newMimeType, $newFileName, $newRevision) {
  try {
    // First retrieve the file from the API.
    $file = $service->files->get($fileId);

    // File's new metadata.
    $file->setTitle($newTitle);
    $file->setDescription($newDescription);
    $file->setMimeType($newMimeType);

    // File's new content.
    $data = file_get_contents($newFileName);
    $convert = 'true' ;

    $additionalParams = array(
      'uploadType' => 'multipart',
      'newRevision' => $newRevision,
      'data' => $data,
      'mimeType' => $newMimeType,
      'convert' => $convert,
    );

    // Send the request to the API.
    $updatedFile = $service->files->update($fileId, $file, $additionalParams);
    return $updatedFile;
  } catch (Exception $e) {
    print "An error occurred: " . $e->getMessage();
  }
}


(...)
// this is info of the updated file 
$fileId = $updatedFile->getId() ;
// link of file
$cF_link = $updatedFile->alternateLink ;
// pdf version
$enllacos = $updatedFile->exportLinks ;
$cF_PDF_link = $enllacos['application/pdf'] ;
(...)

此代碼與1.0.5-beta PHP客戶端一起使用

塞爾吉

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM