identityserver3 Questions
2
I am using IdentityServer3 for authentication and I have ASP.NET MVC application as Client. I want to setup sliding expiration of authentication cookie.
So as long as user is actively doing someth...
Holytide asked 12/10, 2017 at 20:33
2
I am configuring a .netcore application to use OIDC authenication (provided by IdentityServer).
I have included the following code in my StartUp
app.UseCookieAuthentication(new CookieAuthenticati...
Toot asked 6/4, 2017 at 23:5
2
I am currently developing an SPA application that connects to a bunch of webAPI's. These API require that the user is logged in, so I started digging into Openid Conect and OAuth2 examples, mostly ...
Pure asked 22/8, 2017 at 12:16
2
I've been trying to setup a new IdentityServer3 with AspNetIdentity for a few days now. I'm able to login using my existing Identity DB and that's all good but I can never get the User.Identity.Nam...
Civilly asked 24/2, 2017 at 14:59
1
I have a asp.net solution which consists of
1). asp.net identity server rc 3
2). asp.net Core web api
3). asp.net webform ( not in asp.net core, client)
I don't see any sample with identity serv...
Autoharp asked 24/11, 2016 at 18:51
2
I am trying to replace the old oidc-token-manager with oidc-client in my angular app, but I keep getting this error
"No state in response", I have look at brockallen sample to learn how to use it, ...
Kickapoo asked 21/8, 2016 at 23:53
3
I'm using Identity Server 3 to authenticate and generate Access/Refresh tokens for my angular Client.
I'm currently setting the Refresh Token to expire in 48 hours for my Angular Client.
Some use...
Fasciation asked 17/10, 2018 at 0:44
2
I have a situation where I have an RP that does not explicitly require you to be logged into it. However I had a look at the session management specification for Open ID Connect, more specifically ...
Equipage asked 16/8, 2016 at 18:21
2
Solved
Happy new year to everyone...
I configured an IdentityServer4, and I can make successful ASP.net Core web api calls.
But for asp.net framework 4.5.2 web apis,
I got {"Response status code does no...
Statfarad asked 2/1, 2017 at 10:36
2
So I have the following setup:
Frontend: AngularJS App
Backend: WebApi with Identity Server to validate clients
In my Backend I create a new in-memory client like so:
new Client
{
Enabled = tr...
Beghtol asked 25/10, 2018 at 15:35
3
Solved
We have configured Client App to use IdentityServer3 authentication via OpenID Connect protocol (it's ASP.NET MVC App that uses OWIN middleware to support OIDC).
The IdentityServer3 itself is conf...
Wame asked 29/4, 2015 at 12:37
4
I'm trying to get up to speed with OpenId Connect, OAuth2.0, Security Token Service and Claims. Imagine a scenario with a large website with many areas and different functionality e.g. Customer, Or...
Eccles asked 6/5, 2016 at 8:40
4
Solved
IdentityServer supports different OpenId Connect flows that are defined in the Flows enum and set for clients. There's also samples for each type of flow and many references to them in the docs but...
Mound asked 16/4, 2015 at 18:55
2
I have already gone through links here, here and here which are related to issue I am having.
I have Silverlight application using IdentiServer3 for authentication and I started having this issue ...
Dillman asked 11/3, 2017 at 0:24
1
In my OpenIdConnectAuthenticationOptions I set the OpenIdConnectAuthenticationNotifications RedirectToIdentityProvider
It looks like this:
RedirectToIdentityProvider = n =>
{
if (n.ProtocolMe...
Offensive asked 14/5, 2018 at 13:45
1
After login when redirecting the user using context.AuthenticateResult = new AuthenticateResult(<destination>, subject, name, claims) the partial cookie gets so big that it contains up to 4 c...
Wendolyn asked 1/6, 2018 at 11:54
2
I'm passing a token as a string into a SOAP service and have validated that the token is valid. I now have a SecurityToken that in debug mode I can see all the claims and specifically the userId cl...
Jeggar asked 26/8, 2016 at 20:14
3
Solved
I am trying to figure out the best way to run some code once a user has authenticated themselves using OpenID Connect on a Dotnet Core MVC App. I don't want to hard code a redirect URL after sign-i...
Accumulate asked 7/6, 2017 at 11:24
1
Solved
Is it possible to send a custom parameter to an external login provider/custom owin middleware
I have an Identity Server 3 who handles my authentication, and I have an external identity provider m...
Alica asked 13/4, 2018 at 9:18
2
Solved
I'm trying to use public/private keys instead of a shared secret for client secrets with IdentityServer4. This approach is documented here.
If it was a shared secret, the request would contain th...
Visitor asked 6/4, 2018 at 5:55
2
Solved
In my implementation I am using OpenID-Connect Server (Identity Server v3+) to authenticate Asp.net MVC 5 app (with AngularJS front-end)
I am planning to use OID Code flow (with Scope Open_ID) to...
Bridgers asked 11/11, 2015 at 23:40
4
Solved
In the identity server samples we find code like this in Startup.cs
var certFile = env.ApplicationBasePath + "\\idsrv3test.pfx";
var signingCertificate = new X509Certificate2(certFile, "idsrv3tes...
Delfinadelfine asked 8/3, 2016 at 23:35
0
On server I have Identity Server 3 Identity Server. On client side, I have UseOpenIdConnectAuthentication. This is working great. But suddenly after some times when user successfully logged in at m...
Blindfold asked 11/1, 2018 at 10:13
1
I've been struggling to get Federated Authentication working with Sitecore 9 using IdentityServer 3 as the IDP. I've followed the example seen in http://blog.baslijten.com/enable-federated-authenti...
Glans asked 21/11, 2017 at 4:54
3
I configured Identity Server:
public void Configuration(IAppBuilder app)
{
var factory = new IdentityServerServiceFactory().UseInMemoryClients(new Client[] {
new Client()
{
ClientName = "MyCli...
Hunkydory asked 4/10, 2017 at 16:47
© 2022 - 2024 — McMap. All rights reserved.