Why do I get this error? POST https://cloud.appwrite.io/v1/account/tokens/magic-url 404 (Not Found)
- 0
- Auth
- Web
- Cloud
I run this:
const res = await account.createMagicURLToken(ID.unique(), email, location.origin);
It seems like I have "appwrite": "^14.0.0",
in my dependencies, and I think this is the problem.
How do I update?
I use bun
https://www.npmjs.com/package/appwrite
It looks like appwrite 1.5 is not ready in the cloud (latest npm is version 1.4)
Hey @Steven I stil l can't manage to make it work, can you assist with this please?
I don't know bun, but I know doing something like this in node is annoying because node will see you have the package installed already and won't do anything to it. I often have to delete the node_modules folder and then install dependencies again
Recommended threads
- 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...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...