Hello,
I keep getting this error: AppwriteException: The current user is not authorized to perform the requested action.
However, I am given full access to the collection and I gave the All
access to view the collections. I am now unsure how this can be an issue when I set permissions up correctly.
const promise = databases.getDocument('66297275000fdd77a26f', '662972bf00173ab3d363', '6629781f002d752eb79f')
promise.then((response) => {
return response;
}, (error) => {
console.log(error)
});```
code
I idealy want it so only logged in users can view it, however doing this for troubleshooting
Recommended threads
- 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...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...