1
0
Fork 0
mirror of synced 2024-07-06 23:21:05 +12:00

Fix getting started

This commit is contained in:
Jake Barnby 2023-05-15 19:13:20 +12:00
parent db1fd42b0d
commit 67a7a217e8
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -1,44 +1,42 @@
## Getting Started ## Getting Started
### Initialize & Make API Request ### Initialize & Make API Request
Once you add the dependencies, its extremely easy to get started with the SDK; All you need to do is import the package in your code, set your Appwrite credentials, and start making API calls. Below is a simple example: Once you have installed the package, it is extremely easy to get started with the SDK; all you need to do is import the package in your code, set your Appwrite credentials, and start making API calls. Below is a simple example:
```csharp ```csharp
using Appwrite; using Appwrite;
static async Task Main(string[] args) var client = new Client()
{ .SetEndpoint("http://cloud.appwrite.io/v1") // Make sure your endpoint is accessible
var client = Client(); .SetProject("5ff3379a01d25") // Your project ID
.SetKey("cd868db89") // Your secret API key
.SetSelfSigned(); // Use only on dev mode with a self-signed SSL cert
client var users = new Users(client);
.setEndpoint('http://[HOSTNAME_OR_IP]/v1') // Make sure your endpoint is accessible
.setProject('5ff3379a01d25') // Your project ID
.setKey('cd868c7af8bdc893b4...93b7535db89')
.setSelfSigned() // Use only on dev mode with a self-signed SSL cert
;
var users = Users(client); var user = await users.Create(
userId: ID.Unique(),
email: "email@example.com",
password: "password",
name: "name");
try { Console.WriteLine(user.ToMap());
var user = await users.Create(ID.Unique(), 'email@example.com', 'password', 'name');
Console.WriteLine(user.ToMap());
} catch (AppwriteException e) {
Console.WriteLine(e.Message);
}
}
``` ```
### Error Handling ### Error Handling
The Appwrite .NET SDK raises `AppwriteException` object with `message`, `code` and `response` properties. You can handle any errors by catching `AppwriteException` and present the `message` to the user or handle it yourself based on the provided error information. Below is an example. The Appwrite .NET SDK raises an `AppwriteException` object with `message`, `code` and `response` properties. You can handle any errors by catching `AppwriteException` and present the `message` to the user or handle it yourself based on the provided error information. Below is an example.
```csharp ```csharp
var users = Users(client); var users = new Users(client);
try { try {
var user = await users.Create(ID.Unique(), 'email@example.com', 'password', 'name'); var user = await users.Create(
Console.WriteLine(user.ToMap()); userId: ID.Unique(),
email: "email@example.com",
password: "password",
name: "name");
} catch (AppwriteException e) { } catch (AppwriteException e) {
Console.WriteLine(e.Message); Console.WriteLine(e.Message);
} }
``` ```