0
votes

I'm new to firebase cloud storage. Quick question: Are firebase cloud-storage read rules meant to apply to SDK read access, or http (get) URL access (via the URL returned by the SDK after a write), or both?

May have followup questions depending on how this question is answered.

Thanks.

1

1 Answers

0
votes

The Firebase security rules for Cloud Storage apply to users accessing Cloud Storage through the Firebase SDK.

The rules do not apply to users accessing Cloud Storage through a download URL, which is an unguessable URL that provides read-only access to files.

The rules also do not apply to users accessing Cloud Storage through one of the native Cloud Storage SDKs, which run with administrative permissions and are typically only run on app servers or otherwise trusted environments.