2023-02-28 08:36:08 +00:00
|
|
|
import { Client, Users } from "@appwrite.io/console";
|
2022-12-26 12:17:28 +00:00
|
|
|
|
|
|
|
|
const client = new Client();
|
|
|
|
|
|
|
|
|
|
const users = new Users(client);
|
|
|
|
|
|
|
|
|
|
client
|
2023-04-28 14:06:30 +00:00
|
|
|
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
|
2022-12-26 12:17:28 +00:00
|
|
|
.setProject('5df5acd0d48c2') // Your project ID
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
const promise = users.createScryptModifiedUser('[USER_ID]', 'email@example.com', 'password', '[PASSWORD_SALT]', '[PASSWORD_SALT_SEPARATOR]', '[PASSWORD_SIGNER_KEY]');
|
|
|
|
|
|
|
|
|
|
promise.then(function (response) {
|
|
|
|
|
console.log(response); // Success
|
|
|
|
|
}, function (error) {
|
|
|
|
|
console.log(error); // Failure
|
|
|
|
|
});
|