getEditors()getOwners()

时间:2012-08-20 11:48:29

标签: google-apps-script

我能获得编辑和编辑吗?网站所有页面的作者与Apps脚本分开。 我想这样做是因为我正在使用页面的页面级别权限。所以单独的页面有单独的所有者&编辑

var site = SitesApp.getActiveSite();
var pages = site.getChildren();
Logger.log(pages[0].getAuthors());
//Logger.log(pages[0].getEditors());  there is no getEditors() method for page instead of site.

在日志中,它仅显示任何页面的页面创建者。

我无法在Apps脚本中获取这些内容......任何想法???

1 个答案:

答案 0 :(得分:0)

方法.getEditors()适用于网站,而不适用于网页。您只能在网站级别定义权限,就像在“管理网站”标签中手动设置的网站设置一样。

你提到你'正在使用网页的页面权限,你是怎么做到的?