Skip to main content

Questions tagged [firebase-authentication]

Firebase Authentication provides backend services, easy-to-use SDKs, and ready-made UI libraries to authenticate users to your app.

firebase-authentication
0 votes
0 answers
11 views

Next.js Firebase Google Auth Redirect Fails to Authenticate User

I'm trying to implement Google authentication in my Next.js application using Firebase. The flow works up to the point where the user selects their Google account. After that, the user is redirected ...
Jayana N's user avatar
0 votes
0 answers
22 views

Using FirebaseAuth stateChanges to switch pageView index

I am trying to write an app and I have a section to display the users profile and a login/register prompt if they aren't signed in yet. I am using a pageView to switch between the 2 as I want to keep ...
user438409385's user avatar
0 votes
0 answers
11 views

User details doesn't get registered in firebase when signing in from my Flutter app

I'm developing a mobile app using Flutter and use Firebase for backend services. I'm using Firebase Authentication for authentication. The method is email and password. However when signing up the ...
Sathika Hettiarachchi's user avatar
0 votes
0 answers
13 views

React Native Expo Project: Authenticated User Redirection Issue

I'm working on a React Native Expo project, and I'm having trouble with user authentication redirection. Here's the project structure: (app) - (tabs) - _layout.tsx auth onboarding In the ...
Fabio Ferrero's user avatar
0 votes
0 answers
12 views

TypeError: Invalid Attempt To Destructure Non-Iterable Instance Error Message (React Navigation/Firebase Auth)

The entire error message is: TypeError: Invalid attempt to destructure non-iterable instance. In order to be iterable, non-array objects must have a symbol.iteratormethod My App.js is as follows: ...
Jowens4954 's user avatar
1 vote
1 answer
34 views

iOS Firestore permission denied even when using Firebase Authentication [closed]

I know this question has been asked a lot but a lot of the solutions say to change the Firestore rules and I don't want to do that. I'm wondering why they aren't working as is since I have ...
radishhorse's user avatar
0 votes
1 answer
18 views

Firebase: How do I create user only after verifying condition? [duplicate]

How do I do the following? if (something) { createUserWithEmailAndPassword(auth, email, password) .then((userCredential) => { ..... } Since the code runs on the client, can't the user just ...
JobHunter69's user avatar
  • 2,069
0 votes
0 answers
45 views

How can i correctly setup App Integrity to enable mobile verification in Flutter

I am currently in the middle of creating my authentication process for sign-up in Flutter. I have correctly signed the user up with their email and password, the user is then prompted to enter some ...
Shamus Wood's user avatar
0 votes
0 answers
21 views

Why APP_NAME is not working in Firebase SMS messages? [closed]

We have domain instead of %APP_NAME% in Firebase SMS messages, while in email messages %APP_NAME% is shown as in Public-facing name field. Three providers we have enabled - email, phone, google. We ...
Edgar's user avatar
  • 61
0 votes
1 answer
20 views

Flutter firebase auth gives error "The provider has already been linked to the user"

I have implemented firebase auth with google and twitter. Now first time when I do login with twitter with my email id - [email protected] then the sign in is successful and I am able to see my email ...
deepak's user avatar
  • 231
1 vote
1 answer
33 views

Can I use the firebase client auth sdk on the server?

I'm trying to figure out how Firebase works when I've got a client-server model. Usually the client performs a login/register request to the server. Firebase documentation https://firebase.google.com/...
JobHunter69's user avatar
  • 2,069
0 votes
1 answer
33 views

can't SignUp user in flutter firebase: firebase_auth/channel-error

I am trying to sign up a user using firebase but instead i am getting firebase channel error following is the code import 'package:firebase_auth/firebase_auth.dart'; import 'package:firebase_core/...
Syed Mujtaba Ali kazmi's user avatar
0 votes
0 answers
14 views

java.lang.IllegalStateException: Nonnull field "apiKey" is null in flutter

`please am having issues connecting my project to firebase. i have initialized firbase in the main.dart and added the latest dependences for firebase yet still getting error. ERROR Message i got when ...
user26366413's user avatar
0 votes
0 answers
19 views

How do I resolve the Firebase Express Authentication Error in a tutorial

I've been working on this simple Firebase Authentication tutorial using Express JS. However, I keep encountering the following error when I try to use POSTMAN to send an API post to register the ...
Andrew Lawton's user avatar
0 votes
0 answers
4 views

How to dynamic import in Nuxt 3 without preloading the bundle?

I'm trying to dynamic import firebase-auth module in Nuxt 3, however the build always preload firebase-auth despite dynamic import, sample code below: onMounted(async () => { if (Math.random() &...
Andrew See's user avatar
  • 1,122

15 30 50 per page
1
2 3 4 5
1492