Hello,
In our app, we allow users to sign up with both mobile and email + password, covering the following scenarios:
Implemented Successfully:
- Sign up with email and log in with email
- Sign up with mobile and log in with mobile
- Sign up with both email and mobile, and log in with email
Current Challenge:
- Sign up with both email and mobile, and log in with mobile only
The Issue: When users sign up using both email and mobile, both details are stored in the respective fields. However, if the user wants to log in using only their mobile number, we aim to query the database with the mobile number, find the associated record, and use the linked email to log in.
We’ve attempted this using the Backend API, which successfully finds the correct record. However, it still doesn’t seem to complete the login process for the user.
Has anyone managed to implement login functionality with either email or mobile after initially signing up with both? Any insights would be greatly appreciated!
Thank you!