All Questions
Tagged with firebase google-cloud-platform
3,950
questions
0
votes
0
answers
12
views
Can a Firebase cloud function that is configured to be invoked by a Firestore trigger be called with a GET method?
Can a Firebase cloud function that is configured to be invoked by a Firestore trigger be called with a GET method? I have a Firebase cloud function that is configured to be invoked by a Firestore ...
-1
votes
0
answers
11
views
What are these random non-secure HTTP requests on my Firebase Cloud Functions? [closed]
The other day, the Google Cloud Logs Explorer identified five random HTTP requests on a number of my cloud functions within the span of a few minutes from httpRequest.userAgent: Chrome 129.0.0.0. All ...
0
votes
0
answers
14
views
Firebase Cloud Functions Returning 503 Error After Updating Billing Information
I've been using Firebase Cloud Functions with the Blaze plan in my project for some time, primarily as a REST API for a React client (mainly for CRUD operations). Recently, I received emails from ...
1
vote
0
answers
38
views
Are there networking charges for traffic between "Firebase Realtime Database" and "Cloud Run Services" in the same region? [closed]
According to the Firebase pricing page, the Realtime Database has a free cost until 10GB of data transferred. After I've joined the "Blaze plan", I could see at https://console.firebase....
0
votes
0
answers
36
views
The email is not being extracted from the googleIdToken
We obtain a Google ID token from Android using the code below:
BeginSignInRequest.Builder()
.setGoogleIdTokenRequestOptions(
BeginSignInRequest.GoogleIdTokenRequestOptions.builder()
...
0
votes
1
answer
29
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
34
views
My android app doesn't recognize my adapter. No adapter attached skipping layout
I'm making a journal app and whenever I try to use the menu on the toolbar, it says:
o adapter attached skipping layout
A> nd doesn't allow me to add another journal to my journal list
(...
1
vote
1
answer
46
views
How to remove a value from an array within a batched write in Firestore?
I am using JavaScript with CDN imports and I am trying to remove an element from an array within a batched write, however, it seems that no matter what I try I keep getting errors with the most common ...
0
votes
0
answers
14
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
28
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)>...
0
votes
0
answers
33
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-...
1
vote
0
answers
32
views
Duplicate user records in Firebase / Google Cloud Project with the same e-mail address
We have a Firebase/GCP project with multi-tenancy enabled. (It's a web site.)
One of the tenants have multiple user accounts with the same e-mail address.
Different Ids, but same email addresses.
One ...
0
votes
0
answers
39
views
how to add/pass .env file using github action in firebase hosting
i want to add or run .env file in firebase using github action
here is what i did
.github/workflows/firebase-hosting-merge.yml
name: Deploy to Firebase Hosting on merge
on:
push:
branches:
...
0
votes
1
answer
40
views
KMM with Firebase [closed]
I have a KMM mobile app focused on regional food delivery. We built it entirely on MongoDB, utilizing Auth, Realm Device Sync, and Triggers. Unfortunately, many of these features will soon be ...
1
vote
0
answers
28
views
Firestore in Datastore mode - will non-transaction queries of an Entity be strongly consistent after that Entity is updated in a transaction?
Using Firestore in Datastore mode, if my application updates a property of an Entity in a transaction, will that update be immediately visible to all reads of that entity that are not in a transaction?...