Reputation: 433
I am using IdentityServer4 to validate angular 4 client to secure a WebApi. but I am running into 401 on authorization. I need a way to debug Access token validation process to help me figure out the issue.
Upvotes: 0
Views: 898
Reputation: 433
Turned out that I used app.UseMvc(); before app.UseIdentityServerAuthentication in startup class Configure() function
Upvotes: 2