Blazor and Supabase, Authentication - Part 2

Continuation of the article on Blazor and Supabase, in this part we will set up authentication
Banner Image Blazor and Supabase, Authentication - Part 2
Publié par phnogues le novembre 05, 2024

Version Française ici

Part 1 : Database
Part 2 : Authentication
Part 3 : Real Time


Introduction:

One of the strengths of Supabase is its ability to handle all aspects of authentication and authorization for your application. Several providers are available, including email/password as well as most providers on the market (SAML, Microsoft, Facebook, Google, Apple, LinkedIn, ...).

Setting it up in a Blazor application wasn't very straightforward due to limited documentation on the topic. That's why I decided to create these articles. Some C# classes come from past personal projects or from classes I discovered on GitHub. But for you, it will be very easy to implement!

As before, don't forget to clone or browse the reference GitHub project: https://github.com/phnogues/Blazor.Supabase/

The authentication type I chose is using a JWT Token. There are many possibilities that I won’t describe here. Feel free to leave me a comment to learn more.

Let's get started!

Setup:

Here, I won’t copy the code, as it would be too hard to digest; take the time to browse the GitHub project.

Prerequisites:

In the code, I encourage you to look at the following classes:

// Authenticated services
builder.Services.AddTransient<AuthService>();
builder.Services.AddTransient<UserService>();
builder.Services.AddScoped<AuthenticationStateProvider, SupabaseAuthenticationStateProvider>();
builder.Services.AddSingleton<IAuthorizationMiddlewareResultHandler, BlazorAuthorizationMiddlewareResultHandler>();
builder.Services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
.Net
.Net Blazor Supabase

Commentaires :