All Questions
355 questions
-1
votes
0
answers
50
views
GCP: Why can't my Backend Bucket find my public files?
Short Version:
I have configured a backend bucket on my load balancer and mapped it to /__/auth/, that bucket contains a publicly acessable file named handler, but when I hit /__/auth/handler I get an ...
0
votes
0
answers
38
views
passwordHash field returned to client via Firebase Auth Client SDK with Identity Platform enabled
I’m using the Firebase Authentication Client SDK in a React frontend web app using API key from firebase console web app that I created (no Cloud Functions involved).
After signing in a user using:
...
0
votes
1
answer
43
views
How to deploy a gen2 Google Cloud function that triggers on Auth events (e.g. user.create)
Using gen1 it looks like this
gcloud functions deploy AuthUserCreate --runtime dotnet6 --no-gen2 --entry-point AuthUserHandler --trigger-event providers/firebase.auth/eventTypes/user.create
but a) ....
0
votes
1
answer
38
views
How do I add website domain to firebase google authentication to show on sign in?
Can someone explain to me how to add custom domain to firebase google auth? I have added it in Authorised domain but its not showing? Do I need to make a code change for it too?
It is a nextjs website....
1
vote
1
answer
267
views
QUOTA_EXCEEDED : Exceeded daily quota for email sign-in in spite of using my SMTP settings
I've built my API to Send a Firebase email sign-in link to the user with the sendEmailSignInLink function, with requestType: "EMAIL_SIGNIN".
I went to Template in the Authentication section ...
0
votes
1
answer
111
views
How can I get Firebase Authentication ID tokens to work with Google Cloud Identity Platform so they get validated?
I cannot get Identity Platform to validate my firebase token, every one of my requests gets a 401 error response. My main question is, can Firebase Authentication idToken's even work with Identity ...
0
votes
1
answer
49
views
Steps to get Firebase Authentication working locally?
Im using NX with firebase app hosting to get my angular application deployed. It is deploying correctly and seems like auth is working there on the live site but when running the app locally the popup ...
0
votes
0
answers
81
views
How to proxy Firebase Auth calls to bypass regional restrictions (identitytoolkit.googleapis.com domain)?
I’m using the firebase/auth NPM package for user authentication with Google Login and Email/Password. It works great in most places, but some users in China and Iran can’t use my app because the ...
0
votes
1
answer
58
views
Use http Google Cloud Functions "Require Authentication" with Firebase
In my front-end, I'm using the Firebase authentication and the firebaseAuth.currentUser?.getIdToken(true) function to get the token and send it as an Authorization: Bearer {token} header to the Google ...
0
votes
1
answer
100
views
How to generate AdminSDK (ADC) credentials for firebase auth using terraform?
i lastly tried to setup a google project using terraform with a backend that should consume a firebase auth instance for verification. Herefor i need a credentials file that is usually generated in ...
0
votes
1
answer
108
views
How to deploy a Firebase Function using Google Cloud Build?
I'm trying to deploy a Firebase Cloud Function using Google Cloud Build.
Snippet of the cloudbuild.yaml that fails:
- name: "gcr.io/cloud-builders/firebase"
entrypoint: bash
args:
- -...
0
votes
1
answer
209
views
Firebase Phone authentication test num working but real phone num showing [BILLING_NOT_ENABLED]
I am trying to make an application that has only a mobile number login facility. I am using Firebase Auth, Firestore and Android Studio in Java to make it, I have 5 activities, Home(Splash only)>...
1
vote
1
answer
208
views
auth/internal-error | Your application is authenticating by using local Application Default Credentials
During development, I am currently only setting GOOGLE_CLOUD_PROJECT=project-dev with my personal account [email protected] logged in with gcloud. [email protected] is also allowed to impersonate project-...
0
votes
1
answer
27
views
Constantly getting DEVELOPER_ERROR in Android Simulator using Firebase Authentication
I am completely stuck with the task of getting the Firebase Authentication to work locally on my simulator.
It used to work but due to an environment change I have to re-configure it.
By now, I have ...
0
votes
0
answers
39
views
GoogleAuthClient signIn() Returns Null IntentSender in Firebase Authentication
I'm implementing Google Sign-In with Firebase Authentication using One Tap sign-in in my Android app. However, when calling signIn() in my custom GoogleAuthClient, the IntentSender is returning null.
...