Back

Cannot delete account using appwrite auth

  • 0
  • React Native
r00t
31 Mar, 2025, 14:24

other things working well, but my delete isn't working :

deleteAccount: async (password: string) => { try { // First, delete all active sessions try { const sessions = await account.listSessions(); for (const session of sessions.sessions) { await account.deleteSession(session.$id); } } catch (error) { console.log('No sessions to delete'); }

TypeScript
        // Verify credentials by creating a temporary session
        const user = await account.get();
        await account.createEmailPasswordSession(user.email, password);
        
        // Now delete the account
        await account.delete();
        
        return true;
    } catch (error) {
        console.error('Delete account error:', error);
        throw error;
    }
},
TL;DR
Issue: Error occurs when attempting to delete an account using Appwrite auth due to an active session and missing scope. Solution: The error arises because a session must be created before deletion. Try adjusting the code to ensure a session exists before deleting the account.
Darshan Pandya
31 Mar, 2025, 14:25

whats the error?

r00t
31 Mar, 2025, 14:26

(NOBRIDGE) ERROR Delete account error: [AppwriteException: User (role: guests) missing scope (account)]

r00t
31 Mar, 2025, 14:30

@Darshan Pandya

Darshan Pandya
31 Mar, 2025, 14:36

i think when you delete all the sessions, the get call fails and might be the one throwing an error.

r00t
31 Mar, 2025, 14:57

when i remove that i get Delete account error: [AppwriteException: Creation of a session is prohibited when a session is active.]

Reply

Reply to this thread by joining our Discord

Reply on Discord

Need support?

Join our Discord

Get community support by joining our Discord server.

Join Discord

Get premium support

Join Appwrite Pro and get email support from our team.

Learn more