Full Stack Web Development

VSW01 The Whirlwind Tour of Authentication and Authorization with ASP.NET Core

12/05/2018

8:00am - 9:15am

Level: Introductory to Intermediate

Chris Klug

Developer

Active Solution

Authentication and authorization is not a fun topic for most people. It's generally that thing that has to be there, but nobody really cares about. And on top of that, every time the requirements are a little different. And every time we have to figure out how to write all the plumbing to get it done properly. It's security, after all …

In ASP.NET Core, Microsoft has made it fairly easy to get it all done. In most cases, it's only a few lines of code and some minor configuration, and you're up and going. However, if you don't know the lines of code and the config, it can be difficult.

In this presentation, you'll see a whole heap of different types of authN and authZ being configured and used. There will be social logins, local logins, AD-based logins, and even token-based authentication for SPAs. Basically, everything you need to get up and running when it comes to authenticating your users in ASP.NET Core.

You will learn:

  • How authentication is added to ASP.NET Core applications
  • How the authentication system can be used to enable multiple forms of authentication
  • When to use which type of authentication provider