Unless I am just not doing it right, its not possible to upgrade an account from anonymous, using magic URL.
This is fine - I have worked around it in my app now - however the docs suggest that this should be possible: https://appwrite.io/docs/products/auth/anonymous (scroll to the bottom section)
I am still sending a magic url, but on the page it takes them to, if they have an old anonymous account, then I perform updates where needed to move data onto their new account for the magic URL. This could be cumbersome though, so being able to upgrade an account from anon using magic url would be nice to have...
Should have been more clear - When creating a magic link request, specifying the users current Id results in an error response, saying that the document already exists. Specifying a different ID creates a new account.
Hmm ya...maybe we need to update those docs..
Can you use the update email endpoint?
I don't want passwords for users, update email endpoint requires password. (My UI doesn't have anywhere for password entry, and I'm having enough push back from users about not wanting to provide email addresses, let alone passwords... Hence why I am creating an option to allow anonymous logins lol)
Currently I only have magic url option for logging in - and right now I'm working on added anonymous auth as an alternative for those who refuse to provide their email address
Recommended threads
- 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...
- Appwrite Storage error 503s for automate...
I'm facing error 503s from Appwrite after about 5-6 seconds of making AI requests from my tool with images and files above 20MB (=> not inline base64 used, but ...
- 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...