⚠ Deprecated: Legacy
Ever since OpenFGA was open sourced, our development efforts shifted to focus OpenFga.Sdk (https://www.nuget.org/packages/OpenFga.Sdk). With time, we have decided to deprecate this package and ask users of this package to use the OpenFga.Sdk directly. The OpenFGA Client comes with additional benefits, like the `BatchCheck`, `ListRelations` and non-transactional `Write` methods. Transitioning should be fairly straight-forward with only a few changes needed. To configure the OpenFGA SDK to talk to the Auth0/Okta FGA `us1` production API, use the following settings: - API URL: https://api.us1.fga.dev - Credential Method: ClientCredentials - API Token Issuer: fga.us.auth0.com - API Audience: https://api.us1.fga.dev/ Learn more here: https://docs.fga.dev/integration/setup-sdk-client Read the OpenFGA .NET SDK docs here: https://github.com/openfga/dotnet-sdk
Suggested alternative: OpenFga.Sdk
.NET SDK for Auth0 Fine Grained Authorization (FGA)
$ dotnet add package Auth0.FgaThis is an autogenerated SDK for Auth0 Fine Grained Authorization (FGA). It provides a wrapper around the Auth0 Fine Grained Authorization API.
This SDK is considered deprecated.
Okta Fine Grained Authorization (FGA) is designed to make it easy for application builders to model their permission layer, and to add and integrate fine-grained authorization into their applications. Okta Fine Grained Authorization (FGA)’s design is optimized for reliability and low latency at a high scale.
DEPRECATION WARNING: This project is no longer maintained. We recommend using the OpenFGA .NET SDK with the following configuration instead of this SDK:
using OpenFga.Sdk.Client;
using OpenFga.Sdk.Client.Model;
using OpenFga.Sdk.Model;
namespace Example {
public class Example {
public static async Task Main() {
try {
var configuration = new ClientConfiguration() {
ApiUrl = "https://api.us1.fga.dev",
StoreId = Environment.GetEnvironmentVariable("FGA_STORE_ID"),
AuthorizationModelId = Environment.GetEnvironmentVariable("FGA_AUTHORIZATION_MODEL_ID"),
Credentials = new Credentials() {
Method = CredentialsMethod.ClientCredentials,
Config = new CredentialsConfig() {
ApiTokenIssuer = "fga.us.auth0.com",
ApiAudience = "https://api.us1.fga.dev/",
ClientId = Environment.GetEnvironmentVariable("FGA_CLIENT_ID"),
ClientSecret = Environment.GetEnvironmentVariable("FGA_CLIENT_SECRET"),
}
}
};
var fgaClient = new OpenFgaClient(configuration);
var response = await fgaClient.ReadAuthorizationModels();
} catch (ApiException e) {
Debug.Print("Error: "+ e);
}
}
}
}
For US1 (Production US) environment, use the following values:
https://api.us1.fga.devfga.us.auth0.comhttps://api.us1.fga.dev/You can get the rest of the necessary variables from the FGA Dashboard. See here.
This repo is deprecated and no longer accepting contributions.
This project is licensed under the MIT license. See the LICENSE file for more info.
The code in this repo was auto generated by OpenAPI Generator from a template based on the csharp-netcore template, licensed under the Apache License 2.0.