1
私はHTMLまたはdocxをgrive apiに変換する必要があります。docxまたはhtmlからpdfへの変換方法はgdrive apiですか?
通常dgriveする私のコード
$client = new \Google_Client();
$client->setAccessToken($_SESSION['access_token']);
$service = new \Google_Service_Drive($client);
$content = file_get_contents('template.html');//template.docx
$fileMetadata = new \Google_Service_Drive_DriveFile(array(
'name' => 'test', // name file
'mimeType' => 'application/pdf', // mime type for save in gdrive
//'parents' => array($id_folder)
));
$file = $service->files->create($fileMetadata, array(
'data' => $content, // file
'mimeType' => 'text/html', // application/vnd.openxmlformats-officedocument.wordprocessingml.document
//'uploadType' => 'multipart',
'fields' => 'id')); //
ファイルのアップロードが、私はtest.pdfというそれを開いたとき、私は、このエラー
は、他のページ
しかし、私のファイルの読み込みに失敗しましたご覧ください1ページしかありません。
どうすればこの問題を解決できますか?
同じエラーが発生する –
小さなテキストファイルをアップロードするための基本的なテストを行います。サンプルコードを使用し、それがステップバイステップで変更するよりも機能するかどうか。 –
小さなtxtファイルをアップロードして同じエラーが発生するhttps://drive.google.com/open?id=19TB7mnYf-imm42QykT0cj9RVir5TZW8F –