In a Flutter app, when calling Firebase auth’s sms authentication FirebaseAuth.occasion.verifyPhoneNumber
on IOS machine (sim and bodily), it causes internal_error with message “An inner error has occurred, print and examine the error particulars for extra info.”
Future verifyPhoneNumber() async {
last phoneNumber = phoneController.textual content;
last firebaseNumber="+82${phoneNumber.replaceAll("-', '').substring(1)}';
attempt {
await widget.updatePhoneNumberCallback(phoneNumber);
setState(() => isVerificationInProgress = true);
await FirebaseAuth.occasion.verifyPhoneNumber(
phoneNumber: firebaseNumber,
timeout: Period(seconds: widget.timeoutSeconds),
verificationCompleted: (PhoneAuthCredential credential) async {
await _verifyWithCredential(credential);
},
verificationFailed: (FirebaseAuthException e) {
setState(() => isVerificationInProgress = false);
_verificationMessage =
SignupPhoneNumberFragment._messages.verificationFailed;
},
codeSent: (String verId, int? resendToken) {
setState(() {
verificationId = verId;
this.resendToken = resendToken;
isVerificationInProgress = false;
});
_startTimer();
},
codeAutoRetrievalTimeout: (String verId) {
setState(() {
verificationId = verId;
isVerificationInProgress = false;
});
},
forceResendingToken: resendToken,
);
} catch (e) {
debugPrint('Error verifying cellphone quantity: $e');
setState(() => isVerificationInProgress = false);
}
}
I’ve adopted mandatory steps to arrange firebase and ios (APNS, bundle id and and many others). Check cellphone set on flutter console works as anticipated so connection between my app and flutter app appears wonderful.
I’ve no clue on what to attempt subsequent as exception has so little data and repeatedly attempting to name the tactic whereas tweaking round finally ends up with ‘too many requests’ and forbids me to attempt for subsequent few hours.
Has anybody have clues on what my drawback is?
Flutter 3.24.5
Firebase core 3.12.0
Firebase Auth 5.5.0
I used to be arrange with decrease model of firebase (core and auth) when i attempted first and received the message. So i attempted upgrading the variations of those two libraries and that also didn’t work.