
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
- Any example for using Appwrite with Verc...
Can not find an example on this.
- AppwriteException Network request failed...
I'm watching a react native / expo tutorila that uses Appwrite as it's backend for its database. So, in this tutorial, there is implementing the seed functional...
- Google OAuth Failed
I have been trying to use google oauth on my appwrite project but the aaccount is successfully created but I can get a valid user session on my web app I have f...
