I am developing and cross platform mobile app using React Native. I would like to develop the application without backend server. Which SDK should I use? Will web client SDK works for React Native? According to my limited knowledge about client SDK, they do not support for creating users with bcrypt password or any other means. How can I accomplish creating user with bcrypt password?
The Web SDK You can check this: https://discord.com/channels/564160730845151244/1108801665122967644/1108803029983035504
For creating user etc. you won't use any Client side SDK but the server ones with Appwrite cloud-function (A serverless function that add pieces of logic to your Appwrite project)
How can I accomplish creating user with bcrypt password?
Why do you need to do this? That API call is more for importing users
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...