Fusio.SDK 5.1.10

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

// Install Fusio.SDK as a Cake Tool
#tool nuget:?package=Fusio.SDK&version=5.1.10                

Fusio CSharp SDK

This is the official Fusio C# SDK, it helps to talk to the Fusio REST API. Fusio is an open source API management system, more information at: https://www.fusio-project.org

Usage

The following example shows how you can get all registered routes at the backend. A working example is also available at: https://github.com/apioo/fusio-sample-csharp-cli

using Fusio.SDK;
using Sdkgen.Client;
using Sdkgen.Client.Credentials;
using Sdkgen.Client.TokenStore;

List<string> scopes = new() {"backend"};
ITokenStore tokenStore = new MemoryTokenStore();

ICredentials credentials = new OAuth2("test", "FRsNh1zKCXlB", "https://demo.fusio-project.org/authorization/token", "", tokenStore, scopes);
Client client = new("https://demo.fusio-project.org", credentials);

try
{
    BackendOperationCollection collection = await client.Backend().Operation().GetAll(0, 16, "");

    Console.WriteLine("Operations:");
    for (int i = 0; i < collection.Entry?.Count; i++)
    {
        Console.WriteLine("* " + collection.Entry[i].HttpMethod + " " + collection.Entry[i].HttpPath);
    }
}
catch (CommonMessageException e)
{
    Console.WriteLine("Error: " + e.Payload.Message);
}

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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
5.1.10 101 11/9/2024
5.1.8 67 8/3/2024
5.1.7 82 7/28/2024
5.1.6 93 7/28/2024
5.1.5 84 7/27/2024
5.1.4 82 7/25/2024
5.1.3 106 7/13/2024
5.1.2 112 6/16/2024
5.1.1 106 6/14/2024
5.1.0 97 6/10/2024
5.0.9 115 5/25/2024
5.0.8 112 5/25/2024
5.0.7 143 4/14/2024
5.0.6 109 4/10/2024
5.0.5 117 4/7/2024
5.0.4 114 4/6/2024
5.0.3 106 4/6/2024
5.0.2 131 3/31/2024
5.0.1 116 3/29/2024
5.0.0 127 3/28/2024