Fusio.SDK
5.0.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Fusio.SDK --version 5.0.5
NuGet\Install-Package Fusio.SDK -Version 5.0.5
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.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fusio.SDK --version 5.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Fusio.SDK, 5.0.5"
#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.0.5 // Install Fusio.SDK as a Cake Tool #tool nuget:?package=Fusio.SDK&version=5.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Fusio CSharp SDK
This is the official Fusio Java CSharp, 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
package org.fusioproject.sample;
import app.sdkgen.client.Credentials.OAuth2;
import app.sdkgen.client.CredentialsInterface;
import app.sdkgen.client.Exception.ClientException;
import app.sdkgen.client.TokenStore.MemoryTokenStore;
import app.sdkgen.client.TokenStoreInterface;
import org.fusioproject.sdk.BackendOperationCollection;
import org.fusioproject.sdk.Client;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) throws ClientException {
List<String> scopes = new ArrayList<>();
scopes.add("backend");
TokenStoreInterface tokenStore = new MemoryTokenStore();
CredentialsInterface credentials = new OAuth2("test", "FRsNh1zKCXlB", "https://demo.fusio-project.org/authorization/token", "", tokenStore, scopes);
Client client = new Client("https://demo.fusio-project.org/", credentials);
BackendOperationCollection operations = client.backend().operation().getAll(0, 16, "");
System.out.println("Operations:");
for (int i = 0; i < operations.getEntry().size(); i++) {
System.out.println("* " + operations.getEntry().get(i).getHttpMethod() + " " + operations.getEntry().get(i).getHttpPath());
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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.
-
net6.0
- Sdkgen.Client (>= 0.1.7)
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 | 103 | 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 | 86 | 7/27/2024 |
5.1.4 | 82 | 7/25/2024 |
5.1.3 | 107 | 7/13/2024 |
5.1.2 | 113 | 6/16/2024 |
5.1.1 | 107 | 6/14/2024 |
5.1.0 | 98 | 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 |