
i am facing this error while using the appwrite service to create a blog platform . i have cross checked all the env variables . this is the piece of code where i am setting up the client and account and using them in a try catch and then using it in the app.js i have done all the necessary imports . still unable to understand the error and dont know how to solve it export class AuthService { client = new Client(); account;
constructor() {
this.client
.setEndpoint(conf.appWriteUrl)
.setProject(conf.appWriteProjectId);
this.account = new Account(this.client);
}
async getCurrentUser() { try { return await this.account.get();
} catch (error) {
console.log("Appwrite service :: getCurrentUser :: error", error);
}
return null;
}
}

Can you log the conf.appWriteUrl
real quick?

FYI, it's best to wrap code in backticks to format a bit nicer. You can use 1 backtick for inline code (https://www.markdownguide.org/basic-syntax/#code) and 3 backticks for multiline code (https://www.markdownguide.org/extended-syntax/#syntax-highlighting).

it gives undefined and when i click on the endpoint it also gives this. i am not sure if the endpoint url is supposed to give this or not .

thanks a lot for the insight i ll surely keep in this in mind

this is expected, ur not meant to access the api directly

Can i see the full variable primted?

The error is probably malformed endpoint passed into client
Recommended threads
- Looking for Partner
I'm looking for a partner for long-term collaboration. Of course, you'll get paid for it. If you are interested, please send a DM to me
- Looking for Partner
I'm looking for partner for long-term collaborating. Of course, I'll pay for you. If you are interested, Please DM me.
- Hola equipo de soporte,
Hola equipo de soporte, Estoy desarrollando una Function en Appwrite Cloud con Node.js 22 y el siguiente package.json: { "name": "upload-whitelist", "type"...
