skip to Main Content

Javascript – Firestore Authentication Delete Anonymous User and Signin With Another Provider

My App sign users anonymously automatically function onAuthStateChanged(user: FirebaseAuthTypes.User | null) { console.log( "Auth State Changed... ", user?.uid, user?.phoneNumber, user?.isAnonymous, "<<App.js" ); userCurrentSet(user); if (!user) auth().signInAnonymously(); if (initializing && user) setInitializing(false); } useEffect(() => { const subscriber = auth().onAuthStateChanged(onAuthStateChanged); return…

VIEW QUESTION

firebase login otp verification

My app is not sending code(otp) for login with phone(firebase) and is printing the following error in Logcat. But it is logging in with testing purpose number manually inserted in firebase console. ERROR [SmsRetrieverHelper] SMS verification code request failed: unknown…

VIEW QUESTION
Back To Top
Search