Firebase Storage allows access to files using an URL https://someUrl
You can restrict Firebase Storage access using security rules.
If you do, you need to pass a token along with the URL, to bypass those rules. Like so https://someUrl&token=someToken
However, you could also allow read access to everyone. In that case, https://someUrl
would be enough to get the content.
How is this an issue regarding security ? I am wondering if a malicious user could find https://someUrl
in any way ?
Thank you !