I made a simple express server in Node.Js to reset a password from the link in the email, I first tried hosting the server on my machine but constantly got this error: Uncaught AppwriteException Error: connect ECONNREFUSED 127.0.0.1:80
Then i trued deploying it on render to see if that makes a difference, I now get a different error (second image).
I put the api key in the server as well as correct domain and project id of my self hosted server. I also use cors with express.js on the node.js server. I registered the app in the console with the domain of the server as well as with *
.
3rd image is my endpoint with the appwrite function to recover the password. I am using node-appwrite 11.1.0 on node v16.11.0
This all seems to point to an incorrect endpoint
Where is your Appwrite server hosted?
Maybe you can log the endpoint to make sure the value is right. Then, you'd have to make sure the DNS and networking is working
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...