...

/

Configuring the SSO Application

Configuring the SSO Application

Learn to run and configure the SSO application.

We'll cover the following...

We can launch our application by executing the following command inside the AuthProvider project folder.

dotnet run

The first launch might take a while, as it will need to run some database migrations.

Assuming that our admin console launches successfully and there are no errors displayed on the screen, we can register a client application. In the context of SSO, the client application is any application that is allowed to redirect to the login page of the SSO application and request an authentication token from it. The configuration information that we enter in the SSO admin console and the information we add to the client application itself must match in order for this to work.

Execute the application below by clicking ...