AppwriteException: Invalid `permissions` param: Permissions must be an array of strings.
- 0
- Functions
- Cloud
I'm encountering an issue with the node-appwrite SDK while attempting to create a storage bucket with custom permissions. Despite following the official documentation, the permissions parameter is flagged as invalid when passed to the createBucket method.
Error:
Function failed: AppwriteException: Invalid permissions param: Permissions must be an array of strings.
at _Client.call (file:///usr/local/server/src/function/node_modules/node-appwrite/dist/client.mjs:278:13)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Storage.createBucket (file:///usr/local/server/src/function/node_modules/node-appwrite/dist/services/storage.mjs:99:12)
at async Module.default (file:///usr/local/server/src/function/src/main.js:72:13)
at async execute (/usr/local/server/src/server.js:208:16)
at async action (/usr/local/server/src/server.js:225:7)
at async /usr/local/server/src/server.js:14:5
SDK Version: node-appwrite@14.1.0 Platform: Function executed in Appwrite server runtime
const permissions = [
Permission.read(Role.user("6756fa35b98aaa8407ca")),
Permission.write(Role.user("6756fa35b98aaa8407ca")),
Permission.delete(Role.user("6756fa35b98aaa8407ca"))
];
console.log('Permissions:', permissions);
try {
const bucket = await storage.createBucket(
'uniqueBucketId',
'My Bucket Name',
'bucket',
permissions
);
console.log('Bucket created:', bucket);
} catch (error) {
console.error('Error:', error.message);
}
The permissions array seems valid when logged:
["read(\"user:6756fa35b98aaa8407ca\")","write(\"user:6756fa35b98aaa8407ca\")","delete(\"user:6756fa35b98aaa8407ca\")"]
Recommended threads
- Google Auth not working in a React App
Authentication with Google has failed. It redirects back to the signin route in React. Attached screenshots for configuration of Google console and Appwrite Go...
- How to display images from storage
I tried the link above, but it returns the error “`Please upgrade to a higher plan.`” I don’t need Transformations at the moment, I just want to display the ima...
- Cant sign up for appwrite cloud. Never s...
Cant sign up for appwrite cloud. Never sends me an email verification