Okay, then all you need to do is just send an email address. So I think you need to replace the order of the arguments like so.
const promise = account.create(
uuidv4,
user.email,
user.password,
user.name
)
You can see more here: https://appwrite.io/docs/client/account?sdk=web-default#accountCreate
Try this and lmn
Also, What version of Appwrite you're using?
I just sign up for the hackathon as i received the mail. let me check what version
Ohh you on the cloud
That's cool no need to check the version
version 1.1.2
am sorry am disturbing u
it d not work
let me send d preview screenshot
It's okay
What error you're getting now?
That's weird, Can you show me your updated code?
ok
should i also show my config file
Maybe the uuidv4
needed to be a function.
Like this
const promise = account.create(
uuidv4(),
user.email,
user.password,
user.name
)
Okay
yes it has thank u
uuid was meant to be a function
am grateful
My question y does d order matter
In a regular JS function it's matter, yes.
ok thank u
Recommended threads
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- 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...