You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Mac Catalyst when the PhoneAuthProvider.provider().verifyPhoneNumber(:, uiDelegate:, completion:) calls the Safari on Mac opens and the user receives following error:
FIRAuthErrorDomain Code=17058 "The interaction was cancelled by the user." UserInfo={NSLocalizedDescription=The interaction was cancelled by the user., FIRAuthErrorUserInfoNameKey=ERROR_WEB_CONTEXT_CANCELLED}
Steps to reproduce:
Run any app with phone auth on Mac OS.
Call PhoneAuthProvider.provider().verifyPhoneNumber(:, uiDelegate:, completion:) method with valid phone number
Relevant Code:
PhoneAuthProvider.provider().verifyPhoneNumber(validPhoneNumber, uiDelegate: nil) { ( _, error) in
if let error = error {
// User receives an error
assertionFailure(error.localizedDescription)
}
...
}
The text was updated successfully, but these errors were encountered:
[REQUIRED] Step 1: Describe your environment
[REQUIRED] Step 2: Describe the problem
With Mac Catalyst when the
PhoneAuthProvider.provider().verifyPhoneNumber(:, uiDelegate:, completion:)
calls the Safari on Mac opens and the user receives following error:Steps to reproduce:
PhoneAuthProvider.provider().verifyPhoneNumber(:, uiDelegate:, completion:)
method with valid phone numberRelevant Code:
The text was updated successfully, but these errors were encountered: