Firebase Storage
This page provides an overview of the Firebase Storage connection, which enables you to access your Firebase cloud storage from within your Uiflow application.
This page outlines the following aspects of the Firebase Storage connection:
This table outlines the required information to configure a Firebase Storage connection:
Configuration field | Description |
---|---|
Connection Name | Name of your connection. This appears as a title for your connection tile in the Connect tab. |
apiKey | Code used to identify and authenticate Firebase users. |
authDomain | Authentication domain for your Firebase project ID. |
projectID | ID of your Firebase project. |
storageBucket | URL of your Firebase cloud storage bucket. |
This section provides an overview of each available action for the Firebase Storage connection:
The
uploadFile
action enables you to upload a file to your Firebase cloud storage. The following table outlines its parameters:Parameter | Type | Description |
---|---|---|
refPath | string | Reference path to the location where you want to upload the file. |
file | object | File you want to upload to Firebase Storage. |
The
getFile
action enables you to retrieve a file from your Firebase cloud storage.The only parameter required for the
getFile
action is filePath
, a string path to the file you want to retrieve.The
updateFile
action enables you to update a file in your Firebase cloud storage. This table outlines its parameters:Parameter | Type | Description |
---|---|---|
filePath | string | Path to the file you want to update. |
data | object | Data you want to update in the file. |
The
deleteFile
action enables you to delete a file from your Firebase cloud storage.The only parameter required for the
deleteFile
action is filePath
, a string path to the file you want to delete.The
listFile
action returns a list of files in your Firebase cloud storage.The only parameter required for the
listFile
action is refPath
, a string reference path to the files you want to list.The component preview shows how your connection component appears in the Logic view of your Uiflow application.
This section outlines how to:

To change the component name, navigate to the Edit Action section and adjust the Action Name field.

To display parameters on your connection component, click Expose above the parameter fields. Selected parameters appear on the left of the connection component.

Last modified 1mo ago