Firebase Storage¶
Non-Visible component| Category | Requires | Version |
|---|---|---|
| API 21, Android 5.0 Lollipop | 2 |
Overview¶
Firebase Storage to upload files to a Firebase Storage Bucket
Permissions
Events¶
Delete Failed¶
Triggers when the file could not be deleted
| Params | |
|---|---|
| file | Text |
| message | Text |
Delete Success¶
Triggers when the file was successfully deleted
| Params | |
|---|---|
| file | Text |
Download Failed¶
Triggers when the file could not be downloaded
| Params | |
|---|---|
| file | Text |
| message | Text |
Download Success¶
Triggers when the file was successfully downloaded
| Params | |
|---|---|
| file | Text |
| downloaded File | Text |
Upload Failed¶
Triggers when the file could not be uploaded
| Params | |
|---|---|
| file | Text |
| message | Text |
Upload Progress¶
Triggers when the file upload progress changed
| Params | |
|---|---|
| file | Text |
| upload Path | Text |
| transferred Bytes | Number |
| total Bytes | Number |
Upload Success¶
Triggers when the file was successfully uploaded
| Params | |
|---|---|
| file | Text |
| upload Path | Text |
| download Url | Text |
Methods¶
Delete File¶
Try to delete a file from Firebase Storage
| Params | |
|---|---|
| file | Text |
Download File¶
Try to download a file from Firebase Storage
| Params | |
|---|---|
| file | Text |
| to Folder | Text |
Get Bucket¶
Returns: Text
Get the name of the Storage Bucket
Pause Downloads¶
Pause all the active downloads
Pause Uploads¶
Pause all the active uploads
Resume Downloads¶
Resume all the active downloads
Resume Uploads¶
Resume all the active uploads
Upload File¶
Try to upload a file to Firebase Storage
| Params | |
|---|---|
| file | Text |
| upload Path | Text |