5,833 questions with no upvoted or accepted answers
31
votes
5
answers
2k
views
Get Download Url after firebase's resize extension completed
This is what I am trying to achieve, implement the firebase's resize image extension, upload an image, then when the resize is completed, add that dowloadUrl's thumbs to a Cloud Firestore document. ...
30
votes
2
answers
5k
views
Firebase Cloud Functions Error: connect ECONNREFUSED
I am trying to create a Kik Messenger bot according to their API using Firebase Cloud Functions. I am using Blaze Plan. I am trying to reply to a message that my bot received. I can receive messages ...
21
votes
0
answers
531
views
Error parsing triggers: Cannot find module '@custom-path'
I'm trying to use Path Mapping for Cloud Functions but when I use a custom path like import * as b from '@custom-path/barrel' I get an error on tslint for implicit imports. If I disable this rule and ...
17
votes
1
answer
2k
views
Deploying Vue/Nuxt app to Firebase as Universal App with SSR
I'm trying to deploy my Universal Nuxt.js app to Firebase. All information on doing this appears to be out-dated, and I'm not able to get it fully working.
SSR appears to work, along with static ...
15
votes
1
answer
1k
views
Angular (8) Universal with firebase cloud functions - can't match any routes
UPDATE: I created a new project with every angular update there was and now on 8.2.0 it seems to be working. Just follow the instructions below, BUT there's currently a bug within webpack. So, after ...
15
votes
2
answers
2k
views
Cloud Functions of Firebase failed to emulate
When I try to run npm run serve:
"build": "./node_modules/.bin/tsc",
"serve": "npm run build && firebase serve --only functions",
I get an output that says it failed to emulate my functions:
...
12
votes
1
answer
1k
views
Caching supported for callable functions?
I was wondering whether it is possible to apply cache-control settings to the response of a callable function. We've used http triggers before and switched to callable functions but cannot find any ...
11
votes
1
answer
912
views
Stackdriver execution_id and custom labels
I'm using Google Cloud Functions and the module @google-cloud/logging-winston.
My first issue is when using this module the property
labels: {
execution_id: "idHere"
}
is not in the Stackdriver ...
10
votes
0
answers
2k
views
Can Google Cloud Functions use HTTPS client authentication?
Can I use HTTPS client certificate authentication with HTTPS-triggered Google Cloud Functions?
I stand-alone node.js, I would try something like this:
var https = require('https');
var options = {...
9
votes
0
answers
391
views
Illegal options by deploying firebase functions
I got an error when deploying firebase functions in GitLab.
I understand that package.json and firebase.json has to have Unix EOL, which I converted with Notepad++, however that didn't solve any ...
9
votes
1
answer
2k
views
GCP function refuses to deploy - error fetching storage source: generic::unknown: retry budget exhausted (3 attempts)
I am trying to deploy a Google Cloud HTTP function, using this line in zsh shell (Arch Linux):
gcloud functions deploy testing --runtime python38 --trigger-http --allow-unauthenticated
when the ...
9
votes
0
answers
1k
views
Firestore trigger functions not logging in local emulator
Firestore trigger functions not logging(trigger) in local emulator, howewer when I deploy them they logs and works fine.
const admin = require("firebase-admin");
const serviceAccount = require('./...
9
votes
1
answer
2k
views
Linking Google Assistant with Firebase Auth
I am attempting to connect a Google Assistant app using DialogFlow(Api.AI) with Firebase Auth. My App uses Firebase Auth to maintain user accounts and the realtime database to store data. I would like ...
9
votes
2
answers
3k
views
Firebase cloud functions work locally but not after deployment
I'm currently attempting to deploy a Nuxt SSR app to Firebase.
Everything works correctly on local and the firebase server. The cloud function correctly executes and renders the html, no problem.
...
8
votes
2
answers
2k
views
Stuck or hanging issue when deploying a NextJs app to firebase hosting
I have a NextJS app that I am trying to deploy to firebase hosting, however during the firebase deploy command it seems to get stuck and hang indefinitely (several hours waiting to no avail). The ...