Project with the requested ID could not be found. Please check the value of the X-Appwrite-Project h
- 0
- Android
- Flutter
- Accounts

It's recommended to initalise the client object only once and pass it everywhere

also your project Id is still wrong

done that also, but still i'm getting the error


How can i correct my project id?

show your client instance

your projectId ( a lont 32 char text) and you passed "neop" in the previous screenshots

i tried with both

@Maniac_Fighter , i've changed "neop" to "32char text project id" but now i'm getting another error


it's working, but why i'm getting the error "Invalid Origin. Register your new client (com.example.neop) as a new Android platform on your project console dashboard"

Have you added the project in the appwrite console?

i added in appwrite dashboard .

How can i add project into appwrite console

they are same

can you show the appwrite dashboard?


and can you see your platform with the id (com.example.neop)

below?



please help @Maniac_Fighter

No idea what's the issue here. Maybe look at this ?(https://github.com/appwrite/appwrite/issues/743)

Make sure there aren't any extra spaces. And make sure this is the right project

@gopal I noticed you're initializing your client like this:
Client()
..setEndpoint('endpoint-here')
..setProject('project-id-here')
..setSelfSigned(status: true);
Have you tried creating an instance of the client first? I've faced issues at times when using the class constructor by itself to access it's methods. Try this and see if it works:
Client client = Client();
client
.setEndpoint('endpoint-here')
.setProject('project-id-here')
.setSelfSigned(status: true);
Recommended threads
- Function 404 error - Deployment with the...
I have a function in my Appwrite Cloud (free plan) project that cannot be accessed or deleted (404 in both UI and CLI). I'm stuck at the 5 functions limit and c...
- 1.6 to 1.7 does not work
Appwrite (self-hosted) stopped working after updating from 1.6.2 that was stable. Getting the general_server_error. Mentioning I fallowed all steps for upgrad...
- How to have two Appwrite Instances in Sy...
Hello, I am new to Appwrite. I am currently developing a training app for our sport with a friend and we would like to use Appwrite for this. We would like to d...
