
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
- mcp-for-docs not working properly
I'm experiencing issues integrating the MCP server tool with Cursor IDE. The MCP server connection establishes successfully initially but fails after one minute...
- Creating a relationship with nested obje...
{ "data": { "name": "DiDi", "type": "Software Development", "userJobs": [{ "$id": "68cbf1e2003612fb13ca", "j...
- Realtime integration with SSR auth
Hey, I have a nextjs website with SSR auth, works great. I use a session client for user verification and an admin client with API key. Both is used with node-...
