identityserver4 Questions

3

I'm trying to use external login provider in my IdentityServer4. I followed the quickstart, and everything was working fine, now I'm trying to add Microsoft login. I added this code in IS4's Startu...
Infiltration asked 16/9, 2020 at 16:13

2

I had an ASP.NET Core 2 web app without Identity Server where I configured the automatic challange of unauthenticated HTTP requests to not redirect the user to the login page and just return 401 in...
Arrivederci asked 15/10, 2018 at 8:50

8

I'm using IdentityServer 4 to provide authentication and autorisation for my web app, using an external login provider (Microsoft). This works fine when I run both IdentityServer and my web app lo...
Triennium asked 30/12, 2018 at 18:5

6

I am trying to redirect to IdentityServer for authorization, and getting "code challenge required" in redirect URL. An error message shows invalid_request with code challenge required, and also my...

5

Using ASP.NET Core 2.2 and Identity Server 4 I have the following controller: [HttpGet("posts"), Authorize] public async Task<IActionResult> GetPosts() { var authenticated = this.User.Iden...
Arrowworm asked 18/9, 2019 at 17:45

5

Solved

I have a private certificate that was generated by azure for a web app for linux containers. I want to pass this value to my .net core app via the web app configuration settings in the the azure po...

3

Solved

This is my initial setting for my mvc connecting with identity server. app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions { AuthenticationType = "oidc", SignInAsAuthent...
Shepherd asked 4/10, 2018 at 21:49

15

I've been implementing IdentityServer4 to provide authorization for my React application. I have this working in my local dev environment, but am running into issues after deployed to IIS in Window...
Agc asked 11/12, 2021 at 3:5

2

When the project is run for the first time, this error is issued when building the initial values. **System.TypeInitializationException: 'The type initializer for 'IdentityServer4.EntityFramework.M...
Informality asked 30/7, 2023 at 15:41

5

Solved

I tried to migrate my ASP CORE project to NET6 My project uses next packages IdentityServer4.AccessTokenValidation - 3.0.1 IdentityModel.AspNetCore.OAuth2Introspection - 4.0.1 IdentityModel - 5.2.0...
Dolabriform asked 15/11, 2021 at 17:46

3

Solved

I'm working on an SPA web app, and im using IdentityServer4 code flow to handle the authorization. So I have the following components: The Angular Client Side App, https://localhost:5001 Asp.net 3...
Illboding asked 28/8, 2020 at 20:20

2

I am using a combination of IdentityServer4 and ASP .NET Core Identity to create a federated sign-in page. One of the external providers I am using is Azure Active Directory through the Open ID Con...

7

We are using Identity Server4 with .NET Core and deploy the application as AWS Serverless lambda function. When are calling the token endpoint to generated access token we got the following error m...
Prescription asked 19/2, 2018 at 10:40

3

Solved

i am extending the identity server to use custom identity server implementation public static void UseMongoDbForIdentityServer(this IApplicationBuilder app) { //Resolve Repository with ASP .NE...
Oidium asked 24/9, 2018 at 22:6

3

We are starting a new web application that will be hosted in our customers infrastructure. Since this is a solution that will be here for a while and serve as a base for a lot of future products, w...

6

Solved

I have a simple web api project, which looks like this: [Authorize] [Route("Get")] public ActionResult<string> SayHello() { return "Hello World"; } I am trying to test it with Postman...
Persuasive asked 19/2, 2020 at 17:35

2

Solved

I have an ASP.NET Core API which uses JWT Authentication. Simple setup: .... string authority = $"https://{configuration["Auth:Authority"]}"; string audience = configuration["Auth:Audience"]; ret...
Dumpcart asked 19/6, 2020 at 16:56

1

I'm using IdentityServer4 and trying to connect an MVC app up for authentication. I currently have things working by using the implicit flow, but I have run into the problem that my access tokens a...
Estrellaestrellita asked 7/7, 2020 at 2:9

1

During the first tests I always used the AddInMemoryClients configuration of IdentityServer4 as described in their documentation. However I'm in the process of deploying it to our test environment...
Troop asked 13/10, 2017 at 12:33

5

when using Automaper 10.1.1, with identityserver4 and .net 7, identityserver4 is the last free version of IdentityServer and doesn't work with a higher version of AutoMapper where this issue is res...
Wheeler asked 8/2, 2023 at 15:57

5

Solved

After identityserver authentication when it redirects to my application, it gives Exception: Correlation failed. Unknown location Now because I am using SPA. This route is definitely not there. ...

3

Solved

I have 3 projects 1- Angular SPA 2- Web API Project core 3.1, 3- IdentityServer with Core 3.1 But I am getting following error > www-authenticate: Bearer error="invalid_token", error_d...
Serration asked 23/10, 2020 at 11:9

3

Solved

I have the following Identity Server 4 configuration on ASP.NET Core 3.1 projects: services .AddIdentityServer(y => { y.Events.RaiseErrorEvents = true; y.Events.RaiseInformationEvents = true;...
Guizot asked 26/8, 2020 at 21:56

1

Solved

At some point recently, Microsoft started including IdentityServer functionality in the ASP.NET Core react template (on top of Identity Core). I'm trying to clearly understand the implications of t...

6

Solved

I have an Asp .net core MVC app. Which connects to an Identity Server 4 for authentication. Hosted in a docker swarm MVC app is hosted on https://XXXXXXX ConfigurServies services.AddAuthenticat...
Strickland asked 22/5, 2018 at 12:42

© 2022 - 2024 — McMap. All rights reserved.