Rystem.Authentication.Social.Blazor 6.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.Authentication.Social.Blazor --version 6.0.7                
NuGet\Install-Package Rystem.Authentication.Social.Blazor -Version 6.0.7                
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.Authentication.Social.Blazor" Version="6.0.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.Authentication.Social.Blazor --version 6.0.7                
#r "nuget: Rystem.Authentication.Social.Blazor, 6.0.7"                
#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.Authentication.Social.Blazor as a Cake Addin
#addin nuget:?package=Rystem.Authentication.Social.Blazor&version=6.0.7

// Install Rystem.Authentication.Social.Blazor as a Cake Tool
#tool nuget:?package=Rystem.Authentication.Social.Blazor&version=6.0.7                

What is Rystem?

Rystem.Authentication.Social.Blazor

This project would be a super project to help the api creator to have fast api behind business interfaces and services dispatched through dependency injection.

DI - Example

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddRazorComponents()
    .AddInteractiveServerComponents();
builder.Services.AddSocialLoginUI(x =>
{
    x.ApiUrl = "https://localhost:7017";
    x.Google.ClientId = builder.Configuration["SocialLogin:Google:ClientId"];
    x.Microsoft.ClientId = builder.Configuration["SocialLogin:Microsoft:ClientId"];
});
builder.Services.AddRepository<SocialRole, string>(repositoryBuilder =>
{
    repositoryBuilder.WithApiClient(apiBuilder =>
    {
        apiBuilder.WithHttpClient("https://localhost:7017").WithDefaultRetryPolicy();
    });
});
builder.Services.AddDefaultAuthorizationInterceptorForApiHttpClient();
var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Error", createScopeForErrors: true);
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}

app.UseHttpsRedirection();

app.UseStaticFiles();
app.UseAntiforgery();

app
    .MapRazorComponents<App>()
    .AddInteractiveServerRenderMode();
app.Run();

Example for Routes.razor

<SocialAuthenticationRouter AppAssembly="typeof(Program).Assembly" DefaultLayout="typeof(Layout.MainLayout)">
</SocialAuthenticationRouter>

Example for logout

You may use the logout button

<SocialLogout></SocialLogout>

or create your custom logout through the SocialUser cascade parameter

[CascadingParameter(Name = "SocialUser")]
public SocialUserWrapper? SocialUser { get; set; }

private async ValueTask LogoutAsync()
{
    if (SocialUser != null)
        await SocialUser.LogoutAsync(false);
}
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 (1)

Showing the top 1 NuGet packages that depend on Rystem.Authentication.Social.Blazor:

Package Downloads
Rystem.RepositoryFramework.Api.Client.Authentication.BlazorServer

Rystem.RepositoryFramework allows you to use correctly concepts like repository pattern, CQRS and DDD. You have interfaces for your domains, auto-generated api, auto-generated HttpClient to simplify connection "api to front-end", a functionality for auto-population in memory of your models, a functionality to simulate exceptions and waiting time from external sources to improve your implementation/business test and load test.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0-rc.1 67 10/18/2024
6.2.0 147,207 10/9/2024
6.1.1 86 10/9/2024
6.1.0 47,873 9/29/2024
6.0.24 120 9/11/2024
6.0.23 137 9/11/2024
6.0.21 339,985 6/18/2024
6.0.20 727,606 6/16/2024
6.0.19 30,354 6/14/2024
6.0.18 101 6/14/2024
6.0.17 100 6/14/2024
6.0.16 49,950 6/10/2024
6.0.15 105 6/9/2024
6.0.14 94,259 5/24/2024
6.0.13 118 5/23/2024
6.0.12 108 5/23/2024
6.0.11 122 5/20/2024
6.0.10 113 5/20/2024
6.0.9 122 5/20/2024
6.0.8 107 5/19/2024
6.0.7 152 5/18/2024