User.Identity.IsAuthenticated is always false when using openid connect
up vote
0
down vote
favorite
I cannot sign in the user on ASP MVC .NetCore 2.0, although it is authenticated successfully with onelogin.com .
My Authentication seems like that:
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
})
.AddCookie()
.AddOpenIdConnect(oauthOptions =>
{
oauthOptions.ClientId = "b6514a30-c3dc-0136-0d4f-0685c268206c137310";
oauthOptions.ClientSecret = "secret";
oauthOptions.Authority = "https://adastra-dev.onelogin.com/oidc";
oauthOptions.ResponseType = OpenIdConnectResponseType.Code;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.Events = new OpenIdConnectEvents()
{
OnTicketReceived = (context) =>
{
ClaimsIdentity identity = (ClaimsIdentity)context.Principal.Identity;
return Task.CompletedTask;
},
OnRedirectToIdentityProvider = (context) =>
{
context.ProtocolMessage.RedirectUri = "https://0b30aa57.ngrok.io/home/index";
return Task.FromResult(0);
}
};
oauthOptions.SaveTokens = true;
});
c# authentication openid-connect
add a comment |
up vote
0
down vote
favorite
I cannot sign in the user on ASP MVC .NetCore 2.0, although it is authenticated successfully with onelogin.com .
My Authentication seems like that:
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
})
.AddCookie()
.AddOpenIdConnect(oauthOptions =>
{
oauthOptions.ClientId = "b6514a30-c3dc-0136-0d4f-0685c268206c137310";
oauthOptions.ClientSecret = "secret";
oauthOptions.Authority = "https://adastra-dev.onelogin.com/oidc";
oauthOptions.ResponseType = OpenIdConnectResponseType.Code;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.Events = new OpenIdConnectEvents()
{
OnTicketReceived = (context) =>
{
ClaimsIdentity identity = (ClaimsIdentity)context.Principal.Identity;
return Task.CompletedTask;
},
OnRedirectToIdentityProvider = (context) =>
{
context.ProtocolMessage.RedirectUri = "https://0b30aa57.ngrok.io/home/index";
return Task.FromResult(0);
}
};
oauthOptions.SaveTokens = true;
});
c# authentication openid-connect
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I cannot sign in the user on ASP MVC .NetCore 2.0, although it is authenticated successfully with onelogin.com .
My Authentication seems like that:
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
})
.AddCookie()
.AddOpenIdConnect(oauthOptions =>
{
oauthOptions.ClientId = "b6514a30-c3dc-0136-0d4f-0685c268206c137310";
oauthOptions.ClientSecret = "secret";
oauthOptions.Authority = "https://adastra-dev.onelogin.com/oidc";
oauthOptions.ResponseType = OpenIdConnectResponseType.Code;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.Events = new OpenIdConnectEvents()
{
OnTicketReceived = (context) =>
{
ClaimsIdentity identity = (ClaimsIdentity)context.Principal.Identity;
return Task.CompletedTask;
},
OnRedirectToIdentityProvider = (context) =>
{
context.ProtocolMessage.RedirectUri = "https://0b30aa57.ngrok.io/home/index";
return Task.FromResult(0);
}
};
oauthOptions.SaveTokens = true;
});
c# authentication openid-connect
I cannot sign in the user on ASP MVC .NetCore 2.0, although it is authenticated successfully with onelogin.com .
My Authentication seems like that:
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
})
.AddCookie()
.AddOpenIdConnect(oauthOptions =>
{
oauthOptions.ClientId = "b6514a30-c3dc-0136-0d4f-0685c268206c137310";
oauthOptions.ClientSecret = "secret";
oauthOptions.Authority = "https://adastra-dev.onelogin.com/oidc";
oauthOptions.ResponseType = OpenIdConnectResponseType.Code;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
oauthOptions.GetClaimsFromUserInfoEndpoint = true;
oauthOptions.Events = new OpenIdConnectEvents()
{
OnTicketReceived = (context) =>
{
ClaimsIdentity identity = (ClaimsIdentity)context.Principal.Identity;
return Task.CompletedTask;
},
OnRedirectToIdentityProvider = (context) =>
{
context.ProtocolMessage.RedirectUri = "https://0b30aa57.ngrok.io/home/index";
return Task.FromResult(0);
}
};
oauthOptions.SaveTokens = true;
});
c# authentication openid-connect
c# authentication openid-connect
edited Nov 7 at 11:39
asked Nov 7 at 11:34
Radoslav Ivanov
164
164
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53188673%2fuser-identity-isauthenticated-is-always-false-when-using-openid-connect%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown