All Questions
Tagged with firebase firebase-authentication
17,932 questions
0
votes
1
answer
27
views
firebase phone number otp failed to send
I'm making a simple chat app in android studio, but the phone number OTP failed to sent even though i used a real device to run the app (samsung galaxy a52 android 14).
Here is the code :
package com....
1
vote
0
answers
22
views
My Flutter app using Firebase gets stuck on loading screen after pressing button [closed]
My Flutter app using Firebase gets stuck on loading screen after pressing button.
button code:
TextButton(onPressed: (){
_submit(context);
},
child: Text("Sign In")
),
void ...
0
votes
1
answer
29
views
onAuthStateChanged doesn't return the initial null value on iOS
I am migrating an Ionic/Angular app from using a combination of Firebase and Angular/Fire Namespace compat libraries to the Angular/Fire modular libraries.
The updated code, using @angular/fire ...
1
vote
1
answer
24
views
How do I unenroll/reset Firebase user from TOTP 2FA?
Let's say my user enrolled to TOTP in my web app, but lost access to his Authenticator App, or deleted account in it. Now my user can't access my app, since he won't be able to get Secret Code to his ...
2
votes
1
answer
44
views
error while trying to login with google using firebase
I get:
Error signing in: [firebase_auth/invalid-credential] The supplied auth credential is incorrect, malformed or has expired. [ ID Token issued at 1733745109 is stale to sign-in.
What is the ...
0
votes
1
answer
19
views
TypeError: Cannot read properties of undefined (reading 'getApp');
So I was running my application fine as a Chrome instance with the code below.
void main() async {
WidgetsFlutterBinding.ensureInitialized();
// Check if the app is running on the web
if (...
0
votes
1
answer
32
views
User is null on direct link navigation firebase
How can I redirect to my home page when user doesn't have the required permissions to access a page. I'm using this custom made AuthGuard
import { ReactNode, useEffect, useState } from 'react';
import ...
-2
votes
0
answers
19
views
Custom firebase domain shows SSL broken for Google Login - DNS Record added [closed]
Custom firebase domain shows SSL broken for Google Login, but the login goes on.
I have done the following steps :
DNS Record is added
Verified the domain in Search Console
Added in authorized ...
0
votes
0
answers
53
views
DllNotFoundException: Unable to load DLL 'FirebaseCppApp-12_4_1'. Firebase Not Initialized
Hey I am having this issue from yesterday. I have the latest Firebase versions installed from their website. I am only using Firebase Authentication for now. Build process is successful but I am ...
0
votes
1
answer
34
views
Flutter firebase exception not being caught by try-catch block
I am trying to implement simple login using flutter and firebase(just started learning). The user-not-found error is not being caught by the try-catch block in the code.
Code in Question
TextButton(
...
0
votes
0
answers
31
views
Firebase authentication does not work on the apk version of the Unity app
Everything works fine in unity, authentication is going through. But when building on android, nothing comes out. I looked at who had the same problems, but it didn't really help me. I've been ...
0
votes
0
answers
38
views
How to Upload profileImage to Firestore Database?
i make the register user in firebase
in registerViewcontroller
i have username, email, password and profileImage
below image is Firestore structure
this is what i save user information in firestore ...
0
votes
0
answers
32
views
Authenticate to Firebase Auth in embedded WebView
I am building an iOS application where users have to sign in using Firebase Auth.
Is it possible to embed a web view in my iOS application that offer web based authentication for the user, instead of ...
-1
votes
1
answer
29
views
How to set Claims in Firestore [closed]
I'm using the example code below.
The problem is that I'm not able to set Claims.admin to true. Can someone help to modify example so that first it sets admin to true and then read value?
Code is from ...
0
votes
0
answers
14
views
Firebase-React Native Authentication linkWithCredential Error
I am developing a React Native mobile app in which I want to use Firebase's phone authentication as well as Email Password authentication. For this purpose, after the user signs up using their mobile ...