
I signed in my user using apple Oauth now i wish to do phone verification so I am implementing this block of code
Future<void> updateAndVerifyPhoneNumber(String phone) async {
await appwrite.account
.updatePhone(phone: phone, password: appwrite.user.password!);
await appwrite.account.createPhoneVerification();
}
But I do not seem to get anything for the password of the user, I am aware one way is to take it in from the user, but since user signed in from Apple a password was not created.
what shall I do in this case

Okay shall I ask for the creation of a password first ?

that would make sense
Recommended threads
- Swift SDK 13.2.1: Missing AppwriteEnums ...
## Issue Build fails with error: `Unable to find module dependency: 'AppwriteEnums'` ## Environment - **SDK Version:** 13.2.1 (swift-for-apple) - **Xcode:** 16...
- Type String is not a subtype of type int...
In flutter using appwrite: ^17.1.0, ```DocumentList response = await databases!.listDocuments( databaseId: "xxx", collectionId: "xxx", ...
- Appwrite Google OAuth token error
Hello, I am developing an application using React Native, Expo Router, and Appwrite. Since this afternoon, I have been encountering errors related to authentic...
