Rystem.Api.Client.Authentication.BlazorServer 6.0.4

dotnet add package Rystem.Api.Client.Authentication.BlazorServer --version 6.0.4
NuGet\Install-Package Rystem.Api.Client.Authentication.BlazorServer -Version 6.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rystem.Api.Client.Authentication.BlazorServer" Version="6.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.Api.Client.Authentication.BlazorServer --version 6.0.4
#r "nuget: Rystem.Api.Client.Authentication.BlazorServer, 6.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Rystem.Api.Client.Authentication.BlazorServer as a Cake Addin
#addin nuget:?package=Rystem.Api.Client.Authentication.BlazorServer&version=6.0.4

// Install Rystem.Api.Client.Authentication.BlazorServer as a Cake Tool
#tool nuget:?package=Rystem.Api.Client.Authentication.BlazorServer&version=6.0.4

What is Rystem?

Services extensions

HttpClient to use your API (example)

You can add a client for a specific url

builder.Services.AddRepository<User, string>(builder =>
{
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});

Default interceptor for Authentication with JWT

You may use the default interceptor to deal with the identity manager in .Net DI.

builder.Services.AddDefaultAuthorizationInterceptorForApiHttpClient();

This line of code inject an interceptor that works with ITokenAcquisition, injected by the framework during OpenId integration (for example AAD integration). Automatically it adds the token to each request.

You may use the default identity interceptor not on all repositories, you can specificy them with

builder.Services.AddRepository(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058")
        .AddDefaultAuthorizationInterceptorForApiHttpClient<T, TKey>();
});

Remember to add

builder.Services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(builder.Configuration.GetSection("AzureAdB2C or AzureAd"))
 .EnableTokenAcquisitionToCallDownstreamApi(new string[] { "your_scope/access_as_user" })
 .AddInMemoryTokenCaches();

builder.Services.AddServerSideBlazor()
.AddMicrosoftIdentityConsentHandler();

builder.Services.AddControllersWithViews()
.AddMicrosoftIdentityUI();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.4 157,657 4/3/2024
6.0.3 72 3/25/2024
6.0.2 393,316 3/11/2024
6.0.0 1,170,075 11/21/2023
6.0.0-rc.6 90 10/25/2023
6.0.0-rc.5 69 10/25/2023
6.0.0-rc.4 57 10/23/2023
6.0.0-rc.3 57 10/19/2023
6.0.0-rc.2 60 10/18/2023