ASPNET Core OIDC关联失败

时间:2018-07-20 20:05:55

标签: asp.net-core-2.0 identityserver4 oidc

我已经在StackOverflow上看到了许多类似的问题,但是没有一个解决方案对我有用。

这个问题使我发疯!

与许多类似服务器的主要区别在于,负载均衡器后面只有一台服务器,因此问题不在于我的请求将发送到其他服务器。我已经实现了数据保护中间件,更改了我的回调路径,试图捕获错误事件,添加了状态数据缓存,等等。我不知道我在想什么。

如果有人可以为我提供一些见解,我将不胜感激。

services.AddAuthentication(options =>
            {
                options.DefaultScheme = "Cookies";
                options.DefaultChallengeScheme = "oidc";
            })
            .AddCookie("Cookies")
            .AddOpenIdConnect("oidc", options =>
            {
                options.SignInScheme = "Cookies";
                options.ClientId = Configuration["IdServerClientId"];
                options.ClientSecret = Configuration["IdServerClientSecret"];
                options.Authority = Configuration["IdServerBaseUri"];
                options.CallbackPath = "/sign-in-oidc2";
                options.RequireHttpsMetadata = false;
                options.ResponseType = "code id_token";
                options.SaveTokens = true;
                options.TokenValidationParameters = new TokenValidationParameters()
                {
                    NameClaimType = "name"
                };
                options.Scope.Add("openid");
                options.Scope.Add("profile");
                options.Scope.Add("email");
                options.Events = new OpenIdConnectEvents()
                {
                    //OnRedirectToIdentityProvider = OnRedirectToProvider,
                    OnRemoteFailure = OnRemoteFailure,
                    OnAuthenticationFailed = OnAuthenticationFailed
                };
            });

        services.AddOidcStateDataFormatterCache("foo");

        services.AddDataProtection()
            .PersistKeysToFileSystem(new DirectoryInfo(Configuration["KeyPersistenceLocation"]));

1 个答案:

答案 0 :(得分:1)

如果其他人遇到此问题,请在这里找到答案:

https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-2.1#when-it-isnt-possible-to-add-forwarded-headers-and-all-requests-are-secure

在启动时的Configure方法中,需要添加它以处理http / https冲突。

app.Use((context, next) =>
{
    context.Request.Scheme = "https";
    return next();
});