Top "Firebase-storage" questions

Cloud Storage for Firebase (previously called Firebase Storage) gives developers robust, secure uploads and downloads from Firebase SDKs by handling network interrupts and providing an intuitive authorization model.

Firebase Storage and Access-Control-Allow-Origin

I'm trying to download files from Firebase Storage through a XMLHttpRequest, but Access-Control-Allow-Origin is not set on the resource, so …

firebase cors google-cloud-storage firebase-storage
How to get a File() or Blob() from an URL in javascript?

I try to upload an image to the Firebase storage from an URL (with ref().put(file))(www.example.com/…

javascript file url blob firebase-storage
How to upload an image to Firebase storage?

I'm trying to upload a simple byte array into Firebase storage, but my onFailureListener keeps getting called and logging back …

android firebase firebase-realtime-database android-image firebase-storage
Upload files to Firebase Storage using Node.js

I'm trying to understand how to upload files in Firebase Storage, using Node.js. My first try was to use …

javascript node.js firebase gcloud firebase-storage
taskSnapshot.getDownloadUrl() method not working

private void uploadImageToFirebaseStorage() { StorageReference profileImageRef = FirebaseStorage.getInstance().getReference("profilepics/" + System.currentTimeMillis() + ".jpg"); if (uriProfileImage != null) { progressBar.setVisibility(View.VISIBLE); profileImageRef.…

android firebase-storage
After upload a file in Android Firebase Storage how get the file download Url? getDownloadUrl() not working

In my new android firebase project, I used com.google.firebase:firebase-storage:16.0.1 library. I get the following Error: I opened …

java android firebase firebase-storage
How to delete image from Firebase Storage?

Can you help delete an image from Firebase Storage. String deleteImage holds the full url of where the image is …

android firebase firebase-storage
Error: cannot find symbol method getDownloadUrl() of type com.google.firebase.storage.UploadTask.TaskSnapshot

Before gradle update everything worked fine, but later on this error popped up. I have referred to the official documents …

android firebase firebase-storage
Firebase storage Quota has been exceeded

I have set up a test account on firebase just for development purposes. I made use of the storage feature …

firebase firebase-storage
How to get file URL after uploading them to Firebase?

Once you have uploaded a file to Firebase how can you get it's URL so that you can store that …

android firebase firebase-storage