
I have below GET request "/auth-users" endpoint. Which can get all the users and I want to list Identities. But right now I am getting error like AppwriteException: general_unauthorized_scope, app.23sefesf32r23rwewefwe@service.cloud.appwrite.io (role: applications) missing scope (account) (401)
is there any way to get all the Identities without active session for all the users?
if (request.method == 'GET') { if (request.path == "/auth-users") { final client = Client() .setEndpoint( Platform.environment['APPWRITE_FUNCTION_API_ENDPOINT'] ?? '') .setProject( Platform.environment['APPWRITE_FUNCTION_PROJECT_ID'] ?? '') .setKey(context.req.headers['x-appwrite-key'] ?? ''); final users = Users(client); // Account account = Account(client);
final userdata = await users.list();
context.log('Total users: ${userdata.total}');
// How can I get all the Identities
// IdentityList userIdentityList = await account.listIdentities();
// context.log('Total identities: ${userIdentityList.total}');
} }
Recommended threads
- Managed databases?
I'm evaluating Appwrite Cloud for a project. One of my requirements is that I can move to selfhosted down the road if it becomes necessary. After reading the...
- Dumb question, api key for app? Protect ...
I have my project set up, and I'm developing with Flutter. My app does not require users to log in to retrieve some general project data, but authentication is ...
- Update Document taking absurdly long
I'm making a food ordering app for businesses What im trying to do is to create a menu a restuarant is going to have posted all troughout the week, with certai...
