我需要使用 Google Apps 脚本列出 google 域下的所有站点。我写了一个小脚本,但它只返回我创建的网站:
function list_sites() {
var doc = DocumentApp.create('SiteList1');
var domain = 'test.com';
var sites = SitesApp.getSites(domain);
doc.appendParagraph("Top");
doc.appendParagraph(sites);
doc.appendParagraph("Bottom");
doc.saveAndClose(); // Save and close the document
}
我如何获得所有网站?