
Hey guys I am working on a react project with appwrite backend services on a blog website, but I am constantly receiveing the error " Failed to load resource: the server responded with a status of 401 ()" , I also tried configuring cors , in the platforms section in appwrite but still I am getting the same error, can anyone please help me solve this problem , just let me know if you need any more details to solve the error .

401 means you’re unauthorized to do whatever you’re doing.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401
Check permissions for whatever collection you’re trying to pull from is correct.

I have allowed the permissions


That’s for users, are you logged in before making the request?
Recommended threads
- Why are the newly released methods marke...
- trying to get account using jwt
server side script ```js async function verifyJWT(token) { if (!token) throw new Error("No JWT token provided"); try { const res = await axios.get(`${EN...
- Partial update
Might be a silly question, but what is the process for partially updating a self hosted instance? For example the new database update, which I assume is mostly...
