gpt4 book ai didi

asp.net-core - _signInManager.GetExternalLoginInfoAsync() 总是返回 null 和打开 id 到 azure 广告

转载 作者:行者123 更新时间:2023-12-04 11:30:20 29 4
gpt4 key购买 nike

为什么 signinmanager getexternallogininfoasync 方法总是返回 null?

我将 VS2015 与默认的 asp.net 核心(不是框架)项目一起用于具有个人用户帐户的 MVC (这是一个要求) .使用第三方登录的目的是让用户自行注册。基于角色的授权将由 asp.net 标识使用通过 Azure AD 注册时提供的标识进行处理。

如果以下对登录经理的解释不正确,请纠正我。此方法应提供有关外部登录的详细信息,并返回一个 claimprincipal 对象,其中包含用户提供的身份提供者提供的声明。

我使用以下指南在我的 Startup.cs(下面的类部分)中设置 OpenIdConnectAuthentication

https://azure.microsoft.com/en-us/documentation/samples/active-directory-dotnet-webapp-openidconnect/

当我启动外部登录提供程序时,它会将我定向到组织登录页面并成功。

但是,应由 signinmanager 方法填充的变量信息为 null

如果我在回调类中放置一个断点,则会填充 User 并且 IsAuthenticated 变量为 true。

我可以驱动允许用户自己在应用程序中注册的功能,但是,这是我第一次尝试实现第三方登录,我想了解在这一点上我做错了什么。

启动文件

  public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);

services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
// Add Authentication services.
services.AddAuthentication(sharedOptions => {
sharedOptions.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;

});
//services.AddDistributedMemoryCache();
//services.AddSession();
services.AddMvc();

// Add application services.
services.AddTransient<IEmailSender, AuthMessageSender>();
services.AddTransient<ISmsSender, AuthMessageSender>();
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();

app.UseApplicationInsightsRequestTelemetry();

if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseDatabaseErrorPage();
app.UseBrowserLink();
}
else
{
app.UseExceptionHandler("/Home/Error");
}

app.UseApplicationInsightsExceptionTelemetry();

app.UseStaticFiles();

app.UseIdentity();

// Configure the OWIN pipeline to use cookie auth.
app.UseCookieAuthentication( new CookieAuthenticationOptions());



//Add external authentication middleware below.To configure them please see http://go.microsoft.com/fwlink/?LinkID=532715
app.UseOpenIdConnectAuthentication(new OpenIdConnectOptions
{

SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme,
CallbackPath = "/signin-oidc",
ClientId = Configuration["AzureAD:ClientId"],
Authority = String.Format(Configuration["AzureAd:AadInstance"], Configuration["AzureAd:Tenant"]),
ResponseType = OpenIdConnectResponseType.IdToken,
PostLogoutRedirectUri = Configuration["AzureAd:PostLogoutRedirectUri"],
Events = new OpenIdConnectEvents
{
//OnRemoteFailure = OnAuthenticationFailed,
}
});

//app.UseSession();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
}

外部登录
        public IActionResult ExternalLogin(string provider, string returnUrl = null)
{

// Request a redirect to the external login provider.
var redirectUrl = Url.Action("ExternalLoginCallback", "Account", new { ReturnUrl = returnUrl });
var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);
return Challenge(properties, provider);
}

enter image description here

最佳答案

过去曾多次报告此方法产生空值的问题。对于任何开箱即用的受支持身份验证方法,都不会发生这种情况。至少在使用 OAuth 和 azure AD 并遵循帖子中提供的方法时,这是一个问题。但是,有一个变通方法仍然允许使用默认项目类型。只需将生成 ExternalLoginInfo 变量 (info) 的方法替换为使用 User 原则构造的您自己的 ExternalLoginInfo 类。

 ExternalLoginInfo info = new ExternalLoginInfo(User,
"Microsoft",
User.Claims.Where(x=>x.Type== "http://schemas.microsoft.com/identity/claims/objectidentifier").FirstOrDefault().Value.ToString(),
"Microsoft" );

ASP.NET MVC 5 (VS2013 final): Facebook login with OWIN fails (loginInfo is null)

MVC 5 Owin Facebook Auth results in Null Reference Exception

http://blogs.msdn.com/b/webdev/archive/2013/10/16/get-more-information-from-social-providers-used-in-the-vs-2013-project-templates.aspx

关于asp.net-core - _signInManager.GetExternalLoginInfoAsync() 总是返回 null 和打开 id 到 azure 广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40227643/

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