Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Instruction

Configuring the Identity OWIN Middleware Component

Now that we've created our Identity related classes we're ready to configure our application to use Identity for authentication. To do this, we'll be configuring our OWIN middleware pipeline, so that it can process incoming requests and modify responses.

The Startup Class

To get started, add a class named "Startup" to the root of the Treehouse.FitnessFrog project.

pu...