Tuitio.Wrapper 2.2.2

Tuitio.Wrapper

Tuitio is a simple identity server implementation focused strictly on the needs of my home lab.

Tuitio.Wrapper is a NuGet package that facilitates integration with a Tuitio instance in a .NET environment by registering a service called ITuitioService in the application's service collection. It contains three methods, "Login", "Logout" and "Authorize", which are responsible for calling the appropriate methods from the API controller, /account/login, /account/logout or /connect/authorize. These methods provide a simple and convenient way for developers to handle authentication and authorization when communicating with Tuitio's API. Once the package is installed, all the developer has to do is call the UseTuitioServices method at application startup. After this step, ITuitioService can be injected into any class in the application.

Package repository

Tuitio.Wrapper can be installed from my self hosted NuGet feed: https://lab.code-rove.com/public-nuget-server/

Installation

Visual Studio

NuGet.config file

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    <add key="lab.nuget" value="https://lab.code-rove.com/public-nuget-server/v3/index.json" />
  </packageSources>
</configuration>

Configure the above file in the Visual Studio solution or set the new NuGet feed in NuGet Package Manager. After one of this steps, Tuitio.Wrapper can be installed using NuGet Package Manager.

CLI

dotnet add package Tuitio.Wrapper --source https://lab.code-rove.com/public-nuget-server/v3/index.json

Run the above command in a console open in a .NET project directory.

Showing the top 20 packages that depend on Tuitio.Wrapper.

Packages Downloads
Netmash.Security.Authentication.Tuitio
Netmash.Security.Authentication.Tuitio configures authentication with a Tuitio instance in a .NET environment for a .NET API.
50
Netmash.Security.Authentication.Tuitio
Netmash.Security.Authentication.Tuitio configures authentication with a Tuitio instance in a .NET environment for a .NET API.
39
Netmash.Security.Authentication.Tuitio
Netmash.Security.Authentication.Tuitio configures authentication with a Tuitio instance in a .NET environment for a .NET API.
26
Netmash.Security.Authentication.Tuitio
Netmash.Security.Authentication.Tuitio configures authentication with a Tuitio instance in a .NET environment for a .NET API.
25

2.2.2 release [2023-04-12 20:37] ◾ Added IDs for user roles and groups in authorization result 2.2.1 release [2023-04-08 01:48] ◾ Added user roles and groups in authorization result 2.2.0 release [2023-03-27 19:20] ◾ Added "user-info" method in API 2.1.0 release [2023-03-07 22:17] ◾ Tuitio refactoring ◾ Added account logout method 2.0.0 release [2023-01-31 02:17] ◾ Tuitio rebranding ◾ Initial release of Tuitio's API wrapper

Version Downloads Last updated
2.2.2 46 04/12/2023
2.2.1 18 04/08/2023
2.2.0 43 03/29/2023
2.1.0 41 03/08/2023
2.0.0 31 03/02/2023