What am I doing wrong?
I have a function that get trigger for every users.*.create and it does the following:
Map<String, dynamic> functionData = jsonDecode(req.variables['APPWRITE_FUNCTION_EVENT_DATA']);
String userId = functionData["\$id"];
await database.createDocument(
databaseId: "---database id ---",
collectionId: "--- collection id ---",
documentId: userId,
permissions: [Permission.read(Role.user(userId))],
data: {
"code": "--- random code ---"
},
);
The document gets created successfully but client side
Client side i'm doing the following:
User user = await account.get();
Document document = await databases.getDocument(
databaseId: "---database id ---",
collectionId: "--- collection id ---",
documentId: user.$id,
);
Which throws:
AppwriteException: user_unauthorized, The current user is not authorized to perform the requested action. (401)
I am logged in as the user the triggered the function, so it should work or no?
Is document level security enabled on the collection?
Dang! No it wasnt, works now! <:appwritecheers:892495536823861258>
[SOLVED] AppwriteException: user_unauthorized
Recommended threads
- Hi, I'm getting this error while deployi...
✗ Error • search (6937cb70002c2e9c1a97) • Fai ✗ Error: Deployment of search has failed. Check at https://cloud.appwrite.io/console/project-693...
- Timed out waiting for runtime. Error Cod...
After setting up my ML project that uses deepface and tensorflow in appwrite functions I get the `Timed out waiting for runtime. Error Code: 400. ` error. I am...
- Error with realtime channels
I'm performing a subscription to realtime channels, and after a few seconds I get an exception with this error: {\"type\":\"error\",\"data\":{\"code\":1008,\"me...