在ASP.NET MVC中使用MS Graph API更改Azure AD B2C用户密码涉及几个基础概念和技术步骤。以下是详细的解答:
Directory.Read.All
和Directory.Write.All
。以下是一个简单的示例代码,展示如何在ASP.NET MVC中使用MS Graph API更改用户密码:
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Microsoft.Identity.Client;
public class PasswordChangeService
{
private readonly string _tenantId;
private readonly string _clientId;
private readonly string _clientSecret;
private readonly string _graphEndpoint = "https://graph.microsoft.com/v1.0";
public PasswordChangeService(string tenantId, string clientId, string clientSecret)
{
_tenantId = tenantId;
_clientId = clientId;
_clientSecret = clientSecret;
}
public async Task ChangePasswordAsync(string userId, string newPassword)
{
var app = ConfidentialClientApplicationBuilder.Create(_clientId)
.WithClientSecret(_clientSecret)
.WithAuthority(new Uri($"https://login.microsoftonline.com/{_tenantId}"))
.Build();
var result = await app.AcquireTokenForClient(new[] { "https://graph.microsoft.com/.default" }).ExecuteAsync();
var accessToken = result.AccessToken;
using (var httpClient = new HttpClient())
{
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
var requestContent = new StringContent($"{{\"password\": \"{newPassword}\"}}");
requestContent.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json");
var response = await httpClient.PatchAsync($"{_graphEndpoint}/users/{userId}", requestContent);
if (response.IsSuccessStatusCode)
{
Console.WriteLine("Password changed successfully.");
}
else
{
Console.WriteLine($"Failed to change password: {response.ReasonPhrase}");
}
}
}
}
通过以上步骤和示例代码,您可以在ASP.NET MVC中使用MS Graph API更改Azure AD B2C用户的密码。
领取专属 10元无门槛券
手把手带您无忧上云