Use Firebase Storage Without Using Firebase Authentication
No Firebase Authentication…
To use the Firebase Storage we need to authenticate a user via Firebase authentication.
The default security rules require users to be authenticated.
Firebase Storage is basically a powerful and simple object storage, in which you can store your files easily.
Firebase Storage Default Settings:
How you can see this, first you need to go the storage and then go to rules so that you can see like below screenshot.
How You can change the default settings:
First, you need to select the storage and then go to rules after that change this line
request.auth != null;
To
request.auth == null;
How it will look after changed this line, see the below screenshot.
Now, you are able to use Firebase Storage without using Firebase authentication.
Happy Coding…:-)
Thanks for reading this article. Be sure to clap to recommend this article if you found it helpful. It means a lot to me.
If you need any help then Join me on Twitter, Linkedin, Github, and Subscribe to my Youtube Channel.