Rystem.Authentication.Social 6.0.14

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

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

What is Rystem?

Rystem.Authentication.Social

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.

How to use it

You need to configure the social information and token settings, for instance the duration of your token.

builder.Services.AddSocialLogin(x =>
{
    x.Google.ClientId = builder.Configuration["SocialLogin:Google:ClientId"];
    x.Google.ClientSecret = builder.Configuration["SocialLogin:Google:ClientSecret"];
    x.Google.RedirectDomain = builder.Configuration["SocialLogin:Google:RedirectDomain"];
    x.Microsoft.ClientId = builder.Configuration["SocialLogin:Microsoft:ClientId"];
    x.Microsoft.ClientSecret = builder.Configuration["SocialLogin:Microsoft:ClientSecret"];
    x.Microsoft.RedirectDomain = builder.Configuration["SocialLogin:Microsoft:RedirectDomain"];
    x.Facebook.ClientId = builder.Configuration["SocialLogin:Facebook:ClientId"];
    x.Facebook.ClientSecret = builder.Configuration["SocialLogin:Facebook:ClientSecret"];
    x.Facebook.RedirectDomain = builder.Configuration["SocialLogin:Facebook:RedirectDomain"];
},
x =>
{
    x.BearerTokenExpiration = TimeSpan.FromHours(1);
    x.RefreshTokenExpiration = TimeSpan.FromDays(10);
});

You need to add in the app builder section the endpoints

app.UseSocialLoginEndpoints();

You can add your provider for user

builder.Services.AddSocialUserProvider<SocialUserProvider>();

SocialUserProvider is a ISocialUserProvider, to call for instance a database or storage to fetch the information about the user with social username/email.

internal sealed class SocialUserProvider : ISocialUserProvider
{
    public Task<SocialUser> GetAsync(string username, IEnumerable<Claim> claims, CancellationToken cancellationToken)
    {
        return Task.FromResult(new SuperSocialUser
        {
            Username = $"a {username}",
            Email = username
        } as SocialUser);
    }

    public async IAsyncEnumerable<Claim> GetClaimsAsync(string? username, CancellationToken cancellationToken)
    {
        await Task.CompletedTask;
        yield return new Claim(ClaimTypes.Name, username!);
        yield return new Claim(ClaimTypes.Upn, "something");
    }
}

public sealed class SuperSocialUser : SocialUser
{
    public string Email { get; set; }
}
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.14 3 5/24/2024
6.0.13 44 5/23/2024
6.0.12 30 5/23/2024
6.0.11 81 5/20/2024
6.0.9 83 5/20/2024
6.0.7 76 5/18/2024
6.0.6 78 5/10/2024
6.0.5 61 5/10/2024
6.0.4 457,405 4/3/2024
6.0.3 118 3/25/2024
6.0.2 132 3/11/2024
6.0.1 142 3/8/2024
6.0.0 476 11/21/2023
6.0.0-rc.6 62 11/9/2023