我试图以PDF格式导出(以编程方式从谷歌驱动器下载)幻灯片文档,该文档大于10MB并遇到Error - #<Google::Apis::ServerError: Server error>
。
我使用的是Google API ruby客户端,但没有说明为什么会发生这种情况。当以编程方式导出时,手动下载为PDF时<10MB的文档正常工作。
我用来导出文件的方法是
@service.export_file(id, 'application/pdf', download_dest: StringIO.new).string
,
@service
是Google::Apis::DriveV3::DriveService
个对象。