Firebase Storage is a great platform for storing files on the cloud. The most typical use cases are storing pictures or videos from users, but there are no limitation; you can store any kind of data needed in your application. The needs of the application are attended with this powerful storage mechanism.
Cloud Storage with Firebase Storage
Introduction to Firebase Storage
Like previous services, Firebase Storage has an introductory step where it explains the need to secure data, as shown here:
The storage service is enabled with a default rule definition, where only authenticated requests can make write and read calls. This is enough for our application.
Again, for real-world applications, it is recommended to create the...