gpt4 book ai didi

c# - 微软图: how to get all groups reusing the token generated through ADAL

转载 作者:行者123 更新时间:2023-12-03 05:53:50 25 4
gpt4 key购买 nike

我正在尝试使用 Microsoft Graph,但我有点迷失了。我正在使用 ADAL 通过 AuthenticationContext.AcquireTokenAsync 方法对我的应用程序(应用程序 ID + key )进行身份验证。代码如下所示:

AuthenticationContext AuthContext = new AuthenticationContext(Authority);
ClientCredential ClientCredential = new ClientCredential(ClientId, AppKey);
var result = await AuthContext.AcquireTokenAsync(
"https://graph.windows.net",
ClientCredential);

现在,如果我在 Azure Graph 中重用该 token ,我可以使用以下代码恢复所有组:

var url = $"https://graph.windows.net/myorganization/groups?api-version=1.6";
var client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", resultAccessToken);
var response = await client.GetAsync(url);
if (response.Content != null) {
Console.WriteLine(await response.Content.ReadAsStringAsync());
}

根据文档,我应该使用较新的 Microsoft Graph API,但当我尝试使用以下代码时遇到一些问题:

var authenticationProvider = new DelegateAuthenticationProvider(
req.Headers.Authorization = new AuthenticationHeaderValue("bearer",
resultAccessToken.AccessToken);
return Task.CompletedTask;
});
var graph = new GraphServiceClient(authenticationProvider);
var groups = await graph.Groups
.Request()
.GetAsync();

每当我运行此程序时,我最终都会收到以下异常:

未处理的异常:System.AggregateException:发生一个或多个错误。 ---> Microsoft.Graph.ServiceException:代码:InvalidAuthenticationToken消息:访问 token 验证失败。

很明显我在这里遗漏了一些东西,但是什么呢? (顺便说一句,我已经设法让所有内容都与 MSAL 库一起使用,但在这种情况下,我确实需要将我的组件与使用 ADAL 的其他组件集成),

谢谢。

路易斯

最佳答案

AAD Graph 和 Microsoft Graph 具有不同的物理端点。

要调用 AAD 图表,您需要带有受众声明的 token https://graph.windows.net

要调用 Microsoft Graph,您需要带有受众声明的 token https://graph.microsoft.com

这意味着您需要做两件事:

  1. 确保您的应用程序已配置到 Microsoft Graph。 (这意味着您需要更新应用程序的配置才能调用其他资源)
  2. 更新您的代码以请求正确资源的 token 。

希望这会有所帮助!

关于c# - 微软图: how to get all groups reusing the token generated through ADAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44416182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com