Alican Kablan
Alican Kablan

Reputation: 409

Firebase Storage Resumable Uploading Large Files on web

I cannot find any document for resumable upload even browser is closed or tab is closed.Is there any way for doing resumable upload ?

Upvotes: 2

Views: 1304

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317868

The Cloud Storage for Firebase SDK can't resume an upload after the browser tab is closed (or after and Android app or iOS app is killed). Once the context of the upload is lost, it doesn't come back.

When the SDK claims that uploads are "resumable", that refers to the fact the if the user's internet connection is lost, but returns later (while the app is still running), the upload will pick up where it left off.

Upvotes: 4

Related Questions