Installing and configurating Firebase Phone Authentification #4297
-
Hello, I hade an issue working with Phone authentification. I have successfully done the firebase phone installation, but when I want to working with is a Thank you in advance for any help or advice |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
So, the module works? Note that on Android the codes may be auto-consumed by the underlying libraries, meaning that you will never actually see the code yourself, rather you will listen to the user auth status changed listener and advance your app state based on the info provided to you in the callback https://rnfirebase.io/auth/usage#listening-to-authentication-state https://rnfirebase.io/reference/auth#onAuthStateChanged I found the V5 documentation to be more complete in this area but haven't had time to port it forward to v6+ PRs to do so very happily accepted (there's an edit button top right of every docs page to propose a docs change) https://v5.rnfirebase.io/docs/v5.x.x/auth/phone-auth#3.-[Android]-Handle-Auto-Verification |
Beta Was this translation helpful? Give feedback.
So, the module works?
Note that on Android the codes may be auto-consumed by the underlying libraries, meaning that you will never actually see the code yourself, rather you will listen to the user auth status changed listener and advance your app state based on the info provided to you in the callback
https://rnfirebase.io/auth/usage#listening-to-authentication-state
https://rnfirebase.io/reference/auth#onAuthStateChanged
I found the V5 documentation to be more complete in this area but haven't had time to port it forward to v6+ PRs to do so very happily accepted (there's an edit button top right of every docs …