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
- Flutter OAuth2 does not attach Google se...
Hi Appwrite team, I’m using Appwrite Auth in a Flutter mobile app and trying to upgrade an anonymous user to Google OAuth. Docs say that if there is already a...
- Bug report: Race condition in Flutter SD...
Hi team, I've found an intermittent bug in the Flutter SDK (v20.3.0) when using `createOAuth2Session` on Android. **Symptoms** After `createOAuth2Session` re...
- Register Disable
this is possible disable register but keep oauth login?