我可以像这样创建一个快捷方式文件:
gapi.client.drive.files.insert(
{'resource':
{'title': 'shortcut document',
'mimeType': 'application/vnd.google-apps.drive-sdk'}}
).execute();
然后使用生成的fileId(看起来像0B0OUnldiyG0hSHQ1Tng2d21lZDg
)加载实时文档:
gapi.drive.realtime.load(fileId, onFileLoaded);
我可以成功创建一个真实的文档文件:
gapi.client.drive.files.insert(
{'resource':
{'title': 'real document',
'mimeType': 'application/vnd.google-apps.document'}}
).execute();
但是gapi.drive.realtime.load(fileId, onFileLoaded)
调用会导致500错误。文档的fileId看起来像1E6IVZeVV6xbeNPeC0BK8RnwgY80a3wRkhtIt5N3ElmU
。
在非快捷方式文件上加载实时文档需要做些什么特别的事情吗?
答案 0 :(得分:2)
目前您无法在Google doc / sheet / slide上创建实时文档。您可以使用任何二进制格式执行此操作。
如果您有一些重要的用例,请告诉我们,我们可以启用它。