firebase-storage Questions

15

Solved

I'm trying to get the "long term persistent download link" to files in our Firebase storage bucket. I've changed the permissions of this to service firebase.storage { match /b/project-xxx.appspot...
Rootstock asked 22/5, 2016 at 13:16

6

Solved

When using the database you can do snapshot.exists() to check if certain data exists. According to the docs there isn't a similar method with storage. https://firebase.google.com/docs/reference/js...
Corbin asked 10/6, 2016 at 14:49

5

Solved

I want create a document that containing about 20 million objects. The structure like that: documentID ---- key1 -------- object1 -------------name: "test1" -------------score: 123 I don't know...
Holocaine asked 7/3, 2018 at 4:40

1

So, utilizing Firebase Auth and Storage in my AR Application. Upon completing Login and Asset Bundle download, my script directs the User to the next Scene (via SceneManager.LoadScene()), where the...

4

Solved

I'm gettin the normal cors error on my firebase storage when I do a get call on an html file: Request header field Access-Control-Allow-Origin is not allowed by Access-Control-Allow-Headers in pre...
Storage asked 12/12, 2017 at 8:26

3

Solved

Currently I'm working on a page that allows users to upload a file to Firebase Storage. When opening the site through Google Chrome on Android and selecting a file for upload from a standard HTML f...

4

Solved

I am using the File Picker Plugin to choose a file from a device. The file is chosen in the datatype of a PlatformFile, but I want to send the file to Firebase Storage and I need a regular File for...
Thrombus asked 12/12, 2020 at 22:7

4

Solved

I have tested Firebase functions for storage successfully. However, I havn't seen anywhere a hint how to only invoke the function when a file is added into a folder inside my bucket. The only hint ...

2

My app was working normally since today.I already included Firebase Storage in my Android Flutter App and it works after that today I get AppCheck Errors suddenly. I was not include App Check for o...
Valdes asked 21/11, 2021 at 20:20

13

Solved

I want to send photo selected by user in my app to Firebase Storage. I have a simple class with property _imageFile which is set like this: File _imageFile; _getImage() async { var fileName = aw...
Hough asked 1/10, 2017 at 18:44

3

TLDR: This is a question about the URL returned from the task.snapshot.ref.getDownloadURL() and its respective downloadToken. It asks about what is the main role and functionality of the token and ...
Dance asked 5/6, 2019 at 15:8

5

Solved

The documentation is too complex for me to understand. It shows how to download a file from Cloud Storage to Cloud Functions, manipulate the file, and then upload the new file to Cloud Storage. I j...
Maley asked 4/11, 2018 at 18:22

18

I'm currently exploring Flutter, I found there is an official Firebase Storage plugin in Flutter firebase_storage I have storage reference like this one: final StorageReference ref = FirebaseStora...
Myosotis asked 25/1, 2018 at 3:50

27

Solved

After uploading a file in Firebase Storage with Functions for Firebase, I'd like to get the download url of the file. I have this : ... return bucket .upload(fromFilePath, {destination: toFileP...
Parasympathetic asked 22/3, 2017 at 15:35

6

Problem I am trying to create an app with react native and firebase. One of the features I would like for this app is the ability to upload images. I am having some trouble uploading the images to...
Moribund asked 5/1, 2018 at 7:7

2

I am going to store an image in firebase storage. When I send file through image picker then its working fine. But when I manually pass link of image then it is showing an error that says: 'package...
Magog asked 11/7, 2020 at 5:11

3

Solved

I imported an old project into Firebase when I joined. On the https://console.firebase.google.com/project/project-name/overview page, when I try to grab the code snippet to initialize my Firebase,...
Vituperation asked 15/7, 2016 at 23:43

9

I need to access an image stored on Firebase Storage by a direct link, eg http://myfirebasehost.com/storage/imgIwant.png For all I know, it can only this type of URL using the protocol gs://, ho...
Unionize asked 5/8, 2016 at 1:17

5

Solved

I correctly receive UploadTaskSnapshot, and the field downloadUrl contains an instance of Uri that parses download link of uploaded file. How to get storage and downloadUrl as strings?
Cougar asked 18/5, 2018 at 5:26

19

I use Firebase Storage to upfile. But it does not work THIS IS MY CODE. FirebaseStorage storage = FirebaseStorage.getInstance(); StorageReference storageRef = storage.getReferenceFromUrl("gs:/...
Gpo asked 29/12, 2017 at 15:42

3

Solved

In my app, I use DownloadManager to download a file from Firebase. import static android.os.Environment.DIRECTORY_DOWNLOADS; public class Physics extends AppCompatActivity { PDFView pdfView; Fireb...
Jeepers asked 6/12, 2020 at 4:51

9

I'm working on an app that has video streaming functionality. I'm using firebase database and firebase storage. I'm trying to find some documentation on how firebase storage handles video files, bu...
Tangelatangelo asked 16/6, 2016 at 17:12

2

I have a chat app where users can send photos in private or group chats. Each private or group chat has a unique chat id: /images/<chat id>/image.jpg How would one secure the access to this ...
Kingsbury asked 11/12, 2016 at 12:59

6

Solved

I'm learning about Firebase auth and storage in a web app. My idea asks users to login via Firebase and then upload an image. I can see that this is possible from Firebase auth and storage. Howev...

5

Solved

i am trying to upload image, and the same process is working for my other app, but here it gives these errors, can you guy plz help? Future getImage1() async { // ignore: deprecated_member_use va...
Vasos asked 10/11, 2020 at 6:50

© 2022 - 2024 — McMap. All rights reserved.