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
- Does migration to self hosted limited to...
I tried to migrate to self hosted one of my live production database. All is migrated successfully except one table data which contains more than 5k rows...is i...
- Transactions from Android Kotlin client ...
I have a database where I want to create transactions directly in my android client. I can create a transaction with `val tx = tablesDb.createTransaction()`, an...
- User unable to delete document they crea...
I am having a bit a database issue. I am making a music review website and I have successfully been able to create and update reviews as a dummy user, but no ma...