Reputation: 183
We are working on the test automation framework for react-native app.
When we try to log in on the app on iOS build (manually or automatically) we get redirected to the captcha :
How we can to disable captcha for firebase auth?
Why the captcha appears only on iOS build?
Update:
It is possible to do this without firebase.auth().signInAnonymously() mentioned in this post ?
Upvotes: 4
Views: 1886
Reputation: 156
You should enable silent notification
https://firebase.google.com/docs/auth/ios/phone-auth#start-receiving-silent-notifications
Upvotes: 1