All Questions
Tagged with firebase firebase-storage
5,779
questions
0
votes
1
answer
16
views
How to update Firebase Storage URL before displaying items in SwiftUI View
I'm retrieving list of exercises from Firebase and filtering it. After that I need to make another async request to resolve video URL and update it (see code below). The issue is that exercises are ...
0
votes
1
answer
37
views
Can't upload files to firebase cloud storage. Error: "No objects exists with the desired reference"
All requests using the firebase cloud storage sdk result in a "no objects exists with the desired reference". The same code built with expo and react native runs perfectly well on a friend's ...
0
votes
0
answers
21
views
Error: Cannot find ffmpeg in firebase cloud function
i'm trying to compress some uploaded files to firebase storage .. using firebase cloud functions but it give me the error Error: Cannot find ffmpeg
here is my function :
const functions = require(&...
0
votes
1
answer
26
views
Firebase Storage error: [firebase_storage/object-not-found] No object exists at desired reference. why that code can't upload images to firebasestore
I am new to work with firebase. ı am treying to develop an app which tere is profe page for users. to get banner iamge from the user ı wrote the code below.
File? _bannerImage;
Future<void> ...
0
votes
1
answer
84
views
Can't init firebase cloud storage due to cloud resource location
I’m using Firebase emulators to develop and test Cloud Functions locally, and one of my use cases involves uploading a file to Cloud Storage. As part of this process, I initialize Firebase emulators ...
0
votes
0
answers
37
views
How to send large data from service worker to firebase in chrome extension?
I have been trying to send 4mb mp3 audio file from service worker to firebase storage for days now, still couldn't able to work.
Here is what I tried
Tried sending small(in kb) mp3 file and it worked ...
0
votes
0
answers
36
views
Cannot access files in Firebase Storage after regenerating service account key due to SignatureDoesNotMatch error
I recently discovered that my Firebase service account key was exposed, leading Firebase to disable it for security reasons. After generating a new service account key, I found that I couldn’t access ...
0
votes
0
answers
33
views
'Firebase Storage: An unknown error occurred, please check the error payload for server response. (storage/unknown)
I'm making a system to download media from a subfolder inside a main folder with javascript, but it keep showing me an error when I execute the code file, the error it keeps showing me is
)] {
code: ...
0
votes
0
answers
35
views
Cannot upload photo to firebase storage due to google gms error
I am trying to make an application that captures an image and saves it to Firebase storage.
this is the code that is responsible for uploading the photo
private fun uploadAbsensi(bitmap: Bitmap, ...
0
votes
1
answer
39
views
angular/fire@7 storage is not working for my Angular 16 app
I'm trying to use angular/fire@7 storage to store files and I'm getting this error:
Error: Uncaught (in promise): Error: Either AngularFireModule has not been provided in your AppModule (this can be ...
-3
votes
3
answers
94
views
how to wait until the function is complete in kotlin?
I have the function download URL and I want the main program to wait until I have a suitable URL and I can put it in the object:
fun uploadImage(userName: String, uri: Uri): String
{
...
0
votes
1
answer
68
views
Upload image to Firebase with Node.js
For some reason my code for uploading an image to firebase is not working at all.
I've tried multiple different packages for uploading like: busboy, multer, formidable, express file parser, and ...
-1
votes
0
answers
36
views
Why my image didn't show up on scaffold and upload to Firebase Firestore and Storage?
I need help regarding to the Flutter for upload image to Firestore and Firebase Storage.
i wanna asks about my code about imageUrl didnt add to firebase_storage even in scaffold when using pickImage ...
0
votes
1
answer
45
views
Firebase Storage Files Accessible via Browser Despite Security Rules
I'm working on a Jetpack Compose app where users can upload images to Firebase Storage, and I’m storing the image URLs in Firestore. I've set up the following security rules for Firebase Storage:
...
0
votes
0
answers
50
views
Audio to Video Conversion using FFmpeg in React
Upon running my code, the audio successfully gets converted into a video and saved in the bucket, however, the video size is just 9 bytes.
Here's my utility.
import { FFmpeg } from '@ffmpeg/ffmpeg';
...