You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository houses the official .NET (generated in C#) client library for Authzed and SpiceDB.
7
11
8
-
This project is intended to be a canonical source of generated ProtoBuf messages for gRPC communication.
12
+
[Authzed]is a database and service that stores, computes, and validates your application's permissions.
9
13
10
-
[SpiceDB] is a database system for managing security-critical permissions checking.
14
+
Developers create a schema that models their permissions requirements and use a client library, such as this one, to apply the schema to the database, insert data into the database, and query the data to efficiently check permissions in their applications.
11
15
12
-
SpiceDB acts as a centralized service that stores authorization data.
13
-
Once stored, data can be performantly queried to answer questions such as "Does this user have access to this resource?" and "What are all the resources this user has access to?".
16
+
Supported client API versions:
14
17
15
-
[Authzed] operates the globally available, serverless database platform for SpiceDB.
[good first issues]: https://github.com/authzed-rb/spicedb/labels/hint%2Fgood%20first%20issue
33
38
34
-
## Installation
39
+
## Getting Started
40
+
41
+
We highly recommend following the **[Protecting Your First App]** guide to learn the latest best practice to integrate an application with Authzed.
42
+
43
+
If you're interested in example usages, including integration with a Kestrel API, they can be found in their respective folders in the [examples directory].
44
+
45
+
[Protecting Your First App]: https://docs.authzed.com/guides/first-app
46
+
[examples directory]: /examples
35
47
48
+
## Basic Usage
49
+
### Installation
50
+
51
+
With [`dotnet`](https://learn.microsoft.com/en-us/dotnet/core/install/):
52
+
```sh
53
+
dotnet add package Authzed.Net
54
+
```
55
+
56
+
With [`nuget`](https://www.nuget.org/downloads):
36
57
```sh
37
-
nuget install authzed-dot
58
+
nuget install Authzed.Net
59
+
```
60
+
61
+
### Initializing a Client
62
+
63
+
Currently, everything required to connect and make API calls is located in a module respective to API version.
64
+
65
+
In order to successfully connect, you will have to provide a [Bearer Token] with your own API Token from the [Authzed dashboard] in place of `t_your_token_here_1234567deadbeef` in the following example.
0 commit comments