
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 native Google Sign Up with googl...
Hey I want to use the native login instead of the WebView. Do you have any experience on that and has Appwrite to plan this support?
- After upgrading expo 52 to 53
Hello After upgrading my project from Expo SDK 52 to SDK 53, I encountered the following error when running the app: TurboModuleRegistry.getEnforcing(...): 'P...
- How can I use react-native-appwrite in a...
I'm building an app using React Native CLI (not Expo), and I want to add Google Sign-In authentication. However, when I try to use react-native-appwrite, it thr...
