在startup.cs文件中,我尝试了以下几行将Azure AD B2C连接到我的。net Core 5 Web-API项目,然后从GitHub Repo这里。但是它不接受我的。net Core 5+ React模板项目中的AddMicrosoftIdentityWebApp预定义方法。我哪里做错了?
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApi(Configuration.GetSection("AzureAdB2C"));
我已经尝试过OpenId方案和以下方法。
services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAdB2C"));
我没有安装下面给出的包!
Microsoft.Identity.Web;