
Can anyone help solve this issue - I am trying to setup authentication but got this error
Error 404
Project with the requested ID could not be found. Please check the value of the X-Appwrite-Project header to ensure the correct project ID is being used.
Type
project_not_found
```. The issue is that I do have a project created and fully setup with ID as shown below:
`.env`
`APPWRITE_PROJECT_ID="663ff1ba000..."`
`appwrite.js`
import { Client, Account } from 'appwrite';
export const client = new Client();
client .setEndpoint(process.env.NEXT_PUBLIC_APPWRITE_ENDPOINT) .setProject(process.env.APPWRITE_PROJECT_ID);
export { ID } from 'appwrite'; export const account = new Account(client);
also see attached image. Like, I am logged in the Appwrite's console now with the project opened - I don't understand why it's `not found` if it exists. Can you help?
Recommended threads
- deleteDocument shows The current user is...
my application is an ecomm app that list the products and i just want to add the delete functionality to delete the product the user has permission in appwrite...
- running the run() function with the maxT...
export default async function run( executor: IExecutor, queue: AsyncIterable<ITask>, maxThreads = 0 ) { maxThreads = Math.max(0, maxThreads); const A...
- Not sending to majority of Topic Targets...
I have a site using Appwrite Cloud with many people joined with email, Google/Facebook/or Apple Auth. I’ve added them (156 people) to a Messaging Topic and have...
