Search⌘ K

Summary

Explore the fundamentals of securing ASP.NET Core apps using single sign-on, focusing on authentication and authorization principles. Understand how OpenID Connect and OAuth protocols work together to authenticate users and authorize access, plus learn to configure middleware and tokens to protect pages and endpoints effectively.

We'll cover the following...

In this course, we learned how to secure different types of ASP.NET Core applications. We should now be familiar with the following topics:

  • Principles of single sign-on: We learned how single sign-on (SSO) uses a separate application known as identity provider to authenticate the other applications within the ecosystem.

  • Authentication vs. authorization: We discovered that authentication is used to ...