我需要以编程方式从 Office 365 中的应用程序中创建新网站集。我所说的新网站集的意思是,在创建后,它应该出现在 Office 365 的“管理员”->“Sharepoint”选项卡下的网站集列表中。我尝试在我拥有的共享点托管应用程序中使用下面的类似代码创建,
//create sp context and get root
var clientContext = new SP.ClientContext.get_current();
var rootWeb = clientContext.site.rootWeb();
this.clientContext.load(rootWeb);
this.clientContext.executeQUery();
//set web info
var webInfo = new SP.WebCreationInformation();
webInfo.set_webTemplate('YourTemplateName');
webInfo.set_description('Your site description');
webInfo.set_title('Your site tittle');
webInfo.set_url(siteUrl);
webInfo.set_language(yourLangCode);
this.rootWeb.get_webs().add(webInfo);
this.rootWeb.update();
// save site and set callbacks
this.clientContext.load(this.rootWeb);
this.clientContext.executeQueryAsync(
Function.createDelegate(this, this.OnSiteCreationSuccess),
Function.createDelegate(this, this.Error));
但是,这只会在托管我的应用程序的网站集下创建一个子网站。
任何关于我如何实现这一点的建议将不胜感激。