我试图在旅途中自动上传和转换文件。我原来的目标,如Edit on Google Docs without converting所述,根本没有转换,但直到我找到解决方案(如果有的话),我试图转换文件... 显然它没有用。这是代码:
var uploadRequest = _service.Files.Insert(file, stream, mimetype);
uploadRequest.Convert = true;
uploadRequest.Upload();
发送的数据:
ContentType: application/vnd.openxmlformats-officedocument.wordprocessingml.document
Convert: true
但是,文件未转换。它仍然作为Word文档加载,当我尝试在Google Docs上打开它时,Google将其转换为:
我做错了吗?
谢谢!