Home > Back-end >  Cloud Storage vs Google Database
Cloud Storage vs Google Database

Time:01-17

I have created a google firebase project with an android application. I have set the DB rules to read and write as true (Just testing)

My question is if I do "My Firebase URL/.json.. I can see the data stored in my realtime database but I cannot see or access the objects stored in my Firebase Storage.

My question is, are these both seperate entities ? How do I access Google Storage ?

THanks

CodePudding user response:

The Realtime Database and Cloud Storage are completely separate products, that both can be accessed through Firebase. The fact that you can access the data in the database, and even how you access it, is pretty much unrelated to whether and how you can access the files in Cloud Storage,

To access the files in Storage, you can either use the Firebase console, access them through the Firebase SDK in a way that is allowed by your Storage security rules, or you can generate a download URL for each file and open that in any browser.

  •  Tags:  
  • Related