Search⌘ K
AI Features

Configuring the SSO Application

Explore how to configure the Single Sign-On application for your SignalR projects. Learn to register client applications, set client IDs and secrets, define redirect URLs, assign roles and users, and ensure secure authentication. This lesson helps you implement reliable SSO to protect SignalR communication effectively.

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. ...