So i have an appwrite collection with the permissions Read
on Any
(no document security)
When trying to access it I have an Error 500 when accessing it without any session :
{
"message": "Server Error",
"code": 500,
"type": "general_unknown",
"version": "1.5.3"
}
When using a session (tested known user or anon) it works.
After checking a little on the appwrite logs i saw that :
2024-04-10T11:49:50.227098245Z [Error] Timestamp: 2024-04-10T11:49:50+00:00
2024-04-10T11:49:50.227232385Z [Error] Method: GET
2024-04-10T11:49:50.227276118Z [Error] URL: /v1/databases/:databaseId/collections/:collectionId/documents
2024-04-10T11:49:50.227304240Z [Error] Type: Utopia\Database\Exception
2024-04-10T11:49:50.227313388Z [Error] Message: Collection not found
2024-04-10T11:49:50.227319934Z [Error] File: /usr/src/code/vendor/utopia-php/database/src/Database/Database.php
2024-04-10T11:49:50.227326562Z [Error] Line: 2623
Is it the normal way that should work ? (not sure cuz the log error)
I want to make my News
collection public readonly for people to see them.
And the database ID and collection ID are definitely correct?
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...