
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
- Dumb question, api key for app? Protect ...
I have my project set up, and I'm developing with Flutter. My app does not require users to log in to retrieve some general project data, but authentication is ...
- OAuth2 Giving 404
I am trying to implement oauth2 with Google, but it keeps giving this weird 404 error.
- Oauth integration not working after appw...
Hey all, I hope this is the correct category. As the title states, we recently upgraded both our staging and production appwrite to 1.6.1. We had GitHub oauth ...
