rex_firebase_apiV3
Plugin, ACE table, Discussion thread
Dependence: None
Dependence: None
Usage
Fill properties "Api key", "Auth domain", "Database URL", "Storage bucket" to initialize firebase connection.
Or set property "Api key" to empty string then call "Action:Initialize" to initialize connection later.
Or set property "Api key" to empty string then call "Action:Initialize" to initialize connection later.
Log
Set property "Log" to "Yes" to enable more log message shown at console.
Set property "Log" to "Yes" to enable more log message shown at console.
Database URL
A related path is acceptable in v3.x api. For example,
A related path is acceptable in v3.x api. For example,
- Fully path : https://my-3x-test.firebaseio.com/members/
- Related path: members/
Database Rules
Reference
If you're just getting started and would like to try out the database before configuring security rules, you can allow full, public database access with the following rules:
Reference
If you're just getting started and would like to try out the database before configuring security rules, you can allow full, public database access with the following rules:
{
"rules": {
".read": true,
".write": true
}
}
"rules": {
".read": true,
".write": true
}
}