All Questions
2 questions
0
votes
1
answer
2k
views
C# Web API with Scope Specific Routes
I am utilizing IdentityServer4 as the identity provider and my C# Web API (for Users) is protected via:
services.AddAuthentication(Authentication.Bearer)
.AddJwtBearer(Authentication.Bearer, options ...
24
votes
15
answers
84k
views
System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String' with .NET 5
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 Windows ...