I checked the appwrite auth in UI and there is phone number but when I saw the sdk, it wasn't there. How can I add the phone number?
TL;DR
The user wants to add a phone number using the Flutter SDK. The console uses the server API for this purpose. The user can call 'update phone' in their Flutter app after the user logs in. The SDK documentation doesn't mention adding a phone number, but the UI does have an option for it. The user is seeking guidance on how to add a phone number. Solution: The user can refer to the server API documentation for creating users and the SDK documentation for updating phone numbers.The console uses the server API: https://appwrite.io/docs/server/users?sdk=nodejs-default#usersCreate
In your flutter app, you would call update phone after they log in.
https://appwrite.io/docs/client/account?sdk=web-default#accountUpdatePhone
Recommended threads
- Help
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- 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...