
Hi! Here is a part of the code without any important data. The error is "Server error" without more return.
`` Client client = new Client() .SetEndPoint("https://cloud.appwrite.io/v1") .SetProject("[PROJECT_ID]") .SetKey("[API_KEY]");
TypeScript
var users = new Users(client);
try
{
User user = await users.Create(
userId: "unique()",
email: "user@example.com",
password: "password",
name: "John Doe"
);
``
TL;DR
Error message "Server error" when trying to create a new user using C# code with Appwrite client. The issue might be related to the endpoint, project ID, or API key. Double-check the provided values. Recommended threads
- general_route_not_found The requested ro...
``` {"message":"The requested route was not found. Please refer to the API docs and try again.","code":404,"type":"general_route_not_found","version":"1.6.1"} `...
- User (role: guests)
https://sourceb.in/YG9iFTb5uJ
- Unity and OAuth
I'm trying to login an Unity Android app using Yandex provider. I can call the CreateOauth2Token via REST API (.NET is not working). After I get to auth page, s...
