i want to delete an account, appwrite had account.delete() but now whats the alternative
TL;DR
The user wants to know how to delete an account using the Appwrite platform. They mention that the previous solution was to use the account.delete() function, but it is no longer available. They provide a link to the documentation for the new solution, which involves using the users server side SDK.You can delete the account using the users server side SDK
And a function
Recommended threads
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...