AAD B2C:按PrincipalName搜索用户
创始人
2024-07-21 17:00:15
0

下面是一个使用AAD B2C按PrincipalName搜索用户的示例代码:

using Microsoft.Graph;
using Microsoft.Identity.Client;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace AADB2CUserSearch
{
    class Program
    {
        // AAD B2C tenant details
        private static string tenantId = "your-tenant-id";
        private static string clientId = "your-client-id";
        private static string clientSecret = "your-client-secret";
        private static string policy = "your-sign-in-policy";

        static async Task Main(string[] args)
        {
            // Initialize the GraphServiceClient
            GraphServiceClient graphClient = await GetGraphServiceClient();

            // Search for users by PrincipalName
            string principalName = "user@example.com";
            var users = await SearchUsersByPrincipalName(graphClient, principalName);

            // Display the search results
            Console.WriteLine($"Found {users.Count} user(s) with PrincipalName '{principalName}':");
            foreach (var user in users)
            {
                Console.WriteLine($"- {user.DisplayName} ({user.Id})");
            }
        }

        static async Task GetGraphServiceClient()
        {
            // Create a confidential client application
            IConfidentialClientApplication confidentialClientApp = ConfidentialClientApplicationBuilder
                .Create(clientId)
                .WithClientSecret(clientSecret)
                .WithAuthority($"https://login.microsoftonline.com/{tenantId}/v2.0")
                .Build();

            // Acquire an access token
            string[] scopes = new string[] { "https://graph.microsoft.com/.default" };
            AuthenticationResult authResult = await confidentialClientApp.AcquireTokenForClient(scopes).ExecuteAsync();

            // Initialize the GraphServiceClient
            GraphServiceClient graphClient = new GraphServiceClient(new DelegateAuthenticationProvider((requestMessage) =>
            {
                requestMessage.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", authResult.AccessToken);
                return Task.CompletedTask;
            }));

            return graphClient;
        }

        static async Task> SearchUsersByPrincipalName(GraphServiceClient graphClient, string principalName)
        {
            var queryOptions = new List
            {
                new QueryOption("$filter", $"signInNames/any(x: x/value eq '{principalName}' and x/type eq 'emailAddress')")
            };

            var request = graphClient.Users.Request(queryOptions);
            var response = await request.GetAsync();

            return response.CurrentPage.ToList();
        }
    }
}

注意替换以下变量值:

  • tenantId:AAD B2C租户的ID
  • clientId:应用程序的客户端ID
  • clientSecret:应用程序的客户端密钥
  • policy:登录策略的名称

此示例使用Microsoft Graph .NET SDK和Microsoft Identity Client库来与AAD B2C进行交互。首先,我们将创建一个机密客户端应用程序,并使用其凭据获取访问令牌。然后,我们使用GraphServiceClient进行搜索并获取用户信息。

Main方法中,我们首先初始化GraphServiceClient,然后调用SearchUsersByPrincipalName方法来搜索具有指定PrincipalName的用户。最后,我们遍历搜索结果并在控制台上显示每个用户的显示名称和ID。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...
apache子目录二级域名 Apache是一款流行的Web服务器软件,它允许用户使用子目录作为二级域名。使用Apache作为服务...