作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Google Apps 脚本构建了一个 Google 幻灯片演示文稿。
var docId = DriveApp.getFileById(templateId).makeCopy().getId();
var newDoc = DriveApp.getFileById(docId).setName(newDocName);
var newDocUrl = newDoc.getUrl(); // This gets the URL of the editing view. I want the presentation view.
如何发布它并获取已发布演示文稿的 URL?
Here are the docs.我正在寻找类似的东西:
var publishedNewDoc = newDoc.publish();
var newDocPublishedUrl = publishedNewDoc.getPublishedUrl();
最佳答案
如果我的理解是正确的,这个答案怎么样?
为了发布 Google 文档,您可以使用 Drive API 中的 Revisions: update 方法。关于这个,可以看a sample script作为几个答案之一。
在使用此脚本之前,please enable Drive API at Advanced Google services.
var slidesId = "###"; // Please set this.
Drive.Revisions.update({published: true, publishedOutsideDomain: true, publishAuto: true}, slidesId, 1);
当您手动将 Google 幻灯片发布到网络时,您可以看到类似 https://docs.google.com/presentation/d/e/2PACX-###/pub
的网址。遗憾的是,现阶段无法检索该 URL。因此,作为解决方法,可以使用文件 ID 检索已发布的 URL。已发布的带有 Google 幻灯片文件 ID 的 URL 如下。
https://docs.google.com/presentation/d/### file ID ###/pub
如果我误解了您的问题并且这不是您想要的结果,我深表歉意。
关于google-apps-script - 如何从 Google Apps 脚本发布 Google 幻灯片演示文稿?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59014314/
我是一名优秀的程序员,十分优秀!