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
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...
- Error: User (role: guests) missing scope...
I want to send a verification code to the user and the given phone number and check it and create a session right after the user entered the secret. For me that...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...