gpt4 book ai didi

microsoft-graph-api - 无法在启动配置服务 .Net 5.0 中添加 AddMicrosoftGraph

转载 作者:行者123 更新时间:2023-12-05 08:18:05 29 4
gpt4 key购买 nike

我在我的项目中添加了 Nuget 包 MicrosoftGraph 3.24.0,并且在启动配置服务中调用 AddMicrosoftGraph 出现以下错误。

为什么?

错误

'MicrosoftIdentityAppCallsWebApiAuthenticationBuilder' does not contain a definition for 'AddMicrosoftGraph' and no accessible extension method 'AddMicrosoftGraph' accepting a first argument of type 'MicrosoftIdentityAppCallsWebApiAuthenticationBuilder' could be found (are you missing a using directive or an assembly reference?)

最佳答案

要在 asp.net 核心项目中使用图形 API,您应该添加 nuget Microsoft.Identity.Web.MicrosoftGraph(对于 v1.0)或 Microsoft.Identity.Web.MicrosoftGraphBeta(测试版)。

ConfigureServices 中添加:

services.AddMicrosoftIdentityWebAppAuthentication(Configuration)
.EnableTokenAcquisitionToCallDownstreamApi()
.AddMicrosoftGraph()
.AddInMemoryTokenCaches();

.AddMicrosoftGraph() 之前调用 .EnableTokenAcquisitionToCallDownstreamApi()

对于 .NET 6,当您创建新的 ASP.NEt Core Web App 项目时,请选择 Microsoft identity platform 身份验证类型。

enter image description here

然后创建项目,系统会要求您安装所有必需的组件。

enter image description here

在 Program.cs 中添加:

builder.Services
.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAd"))
.EnableTokenAcquisitionToCallDownstreamApi()
.AddMicrosoftGraph()
.AddInMemoryTokenCaches();

关于microsoft-graph-api - 无法在启动配置服务 .Net 5.0 中添加 AddMicrosoftGraph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66169826/

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