我可以从 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 Script 中获得这些内容......知道吗???