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
- Where is tensorflow support? 3.11 ML doe...
and if i manually tried to add tensorflow i get Cannot access offset of type string on string no matter what
- OAuth2 Error: invalid success param url ...
Hi everyone! I'm trying to implement Google OAuth2 login in a React Native app (using the Android simulator) with Appwrite Cloud, and I'm getting the following ...
- Relationships restricted to a max depth ...
When I do query like: ``` await _databases.listDocuments( databaseId: AppwriteConfig.DATABASE_ID, collectionId: AppwriteConfig.SERVICES_COLLECTI...
