You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`UseIdentityServer` includes a call to `UseAuthentication`, so it’s not necessary to have both.
84
84
85
-
When using `UseAuthorization`, make sure to always add it after `UseIdentityServer`/`UseAuthentication`.
85
+
86
+
However, IdentityServer does not include a call to `UseAuthorization`. You will need to add `UseAuthorization` (after `UseIdentityServer`/`UseAuthentication`) to include the authorization middleware into your pipeline. This will enable you to use various authorization features in your application.
0 commit comments