如何使用 CSOM 在 C# 中获取来自 Office 365 组织的所有用户的列表?
How to get a list of all users from Office 365 Organization in C# using CSOM?
我的 Office 365 组织中有 4000 多名用户,我想使用 CSOM 将所有这些用户添加到我的 C# 中的 SharePoint 子网站。我知道我可以使用 PowerShell 代码实现此目的,但我想使用 CSOM 在 C# 中实现。我可以通过以下代码添加特定用户,但如何在单个代码中添加所有 4000 多个用户?。有什么方法可以在一个包含所有 4000 多个用户的循环中迭代一个对象?
using System;
using System.Security;
using Microsoft.Online.SharePoint.TenantAdministration;
using Microsoft.SharePoint.Client;
namespace Basic_Site_Subsite_Group_User_Creation
{
class Program
{
static void Main(string[] args)
{
//Opens the Admin URL
using (ClientContext ctx = new ClientContext("https://developer19.sharepoint.com/sites/Created_with_Communication_site"))
{
//Authenticating with Tenant Admin
SecureString password = new SecureString();
foreach (char c in "password".ToCharArray())
password.AppendChar(c);
ctx.Credentials = new SharePointOnlineCredentials("kailash@kailash.cf", password);
Group gru = ctx.Web.SiteGroups.GetByName("subsite1");
User use = ctx.Web.EnsureUser("anil@kailash.cf");
gru.Users.AddUser(use);
ctx.ExecuteQuery();
如果您的组织有 AD(我相信有),您可以使用它
string groupName = "Domain Users";
string domainName = "your domainName";
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, domainName);
GroupPrincipal grp = GroupPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, groupName);
if (grp != null)
{
foreach (Principal p in grp.GetMembers(false))
{
p.DisplayName //do your action here
}
grp.Dispose();
ctx.Dispose();
}
参考 this project 注册您的应用程序,这样您就可以调用图表 api 从 AD 获取用户。
if (graphServiceClient != null)
{
var users= await graphServiceClient.Users.Request().GetAsync();
将用户添加到 SharePoint 时,建议执行此批处理(一次请求提交 100 个用户以避免出现问题)。
假代码:
for(var i = 1; i <= users.Count; i++)
{
User use = ctx.Web.EnsureUser(users[i].Mail);
gru.Users.AddUser(use);
if (i % 100 == 0)
{
ctx.ExecuteQuery();
}
}
我的 Office 365 组织中有 4000 多名用户,我想使用 CSOM 将所有这些用户添加到我的 C# 中的 SharePoint 子网站。我知道我可以使用 PowerShell 代码实现此目的,但我想使用 CSOM 在 C# 中实现。我可以通过以下代码添加特定用户,但如何在单个代码中添加所有 4000 多个用户?。有什么方法可以在一个包含所有 4000 多个用户的循环中迭代一个对象?
using System;
using System.Security;
using Microsoft.Online.SharePoint.TenantAdministration;
using Microsoft.SharePoint.Client;
namespace Basic_Site_Subsite_Group_User_Creation
{
class Program
{
static void Main(string[] args)
{
//Opens the Admin URL
using (ClientContext ctx = new ClientContext("https://developer19.sharepoint.com/sites/Created_with_Communication_site"))
{
//Authenticating with Tenant Admin
SecureString password = new SecureString();
foreach (char c in "password".ToCharArray())
password.AppendChar(c);
ctx.Credentials = new SharePointOnlineCredentials("kailash@kailash.cf", password);
Group gru = ctx.Web.SiteGroups.GetByName("subsite1");
User use = ctx.Web.EnsureUser("anil@kailash.cf");
gru.Users.AddUser(use);
ctx.ExecuteQuery();
如果您的组织有 AD(我相信有),您可以使用它
string groupName = "Domain Users";
string domainName = "your domainName";
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, domainName);
GroupPrincipal grp = GroupPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, groupName);
if (grp != null)
{
foreach (Principal p in grp.GetMembers(false))
{
p.DisplayName //do your action here
}
grp.Dispose();
ctx.Dispose();
}
参考 this project 注册您的应用程序,这样您就可以调用图表 api 从 AD 获取用户。
if (graphServiceClient != null)
{
var users= await graphServiceClient.Users.Request().GetAsync();
将用户添加到 SharePoint 时,建议执行此批处理(一次请求提交 100 个用户以避免出现问题)。
假代码:
for(var i = 1; i <= users.Count; i++)
{
User use = ctx.Web.EnsureUser(users[i].Mail);
gru.Users.AddUser(use);
if (i % 100 == 0)
{
ctx.ExecuteQuery();
}
}