我最近将Google云端硬盘的API集成到了我建立在CodeIgniter上的网站上。该网站是关于撰写一篇文章并将其转换为Word文档,我使用提供的API脚本设法将其上传到Google云端硬盘
但是,我无法在Google云端硬盘上预览或打开上传的文档。但是,一旦我从Google驱动器下载文档并通过Microsoft Word处理器打开,我就可以查看和编辑它 请告知我应该采取哪些措施,使用Google文档工具在Google云端硬盘上编辑我的文档。
这是我用来上传网站生成的文件的编码,这是附加的示例文档。
请注意:就像我前面提到的那样,当我将从Google云端硬盘下载的文档重新上传回Google云端硬盘时,文档工作正常,我可以预览并编辑它。
if ($_SERVER['REQUEST_METHOD'] == 'POST' && $client->getAccessToken()) {
// We'll setup an empty 1MB file to upload.
$doc_file = $this->session->userdata('google_doc_file');
DEFINE("TESTFILE", __DIR__ . '/../../../papers/'.$doc_file.'.docx');
// This is uploading a file directly, with no metadata associated.
$file = new Google_Service_Drive_DriveFile();
$file->setName($doc_file.'.docx');
$result = $service->files->create(
$file,
array(
'data' => file_get_contents(TESTFILE),
'mimeType' => 'text/docx',
'uploadType' => 'multipart'
)
);
}