| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
The Firebase Remote Config Java quickstart app demonstrates retrieving and updating the Firebase Remote Config template.
This is a simple example of using the Firebase Remote Config REST API to update the Remote Config template being used by clients apps.
If your template already has parameters, adjust one or more of the values.
If your template is empty, update it to look like this:
{
"conditions": [
{
"name": "AndroidUsers",
"expression": "device.os == 'android'",
"tagColor": "PURPLE"
},
{
"name": "iOSUsers",
"expression": "device.os == 'ios'",
"tagColor": "GREEN"
}
],
"parameters": {
"welcome_message": {
"defaultValue": {
"value": "Welcome"
},
"conditionalValues": {
"AndroidUsers": {
"value": "Welcome Android User"
},
"iOSUsers": {
"value": "Welcome iOS User"
}
}
}
}
}
From the config directory run ./gradlew run -Paction=publish -Petag='<LATEST_ETAG>' to update the template.
Confirm in the console that the template has been updated.
This section provides some additional information about how the Remote Config REST API should be used when retrieving and updating templates.
Each time you update parameters, {{remote_config}} creates a new versioned {{remote_config}} template and stores the previous template as a version that you can retrieve or roll back to as needed.
All non-active versions expire and are removed if they are older than 90 days or if there are more than 300 newer template versions. Since template versions expire, any versions that need to be retrieved later on should be persisted externally.
Use the listVersions query parameters to filter the versions that are returned.
Each time the Remote Config template it retrieved an ETag is included. This ETag is a unique identifier of the current template on the server. When submitting updates to the template you must include the latest ETag to ensure that your updates are consistent.
In the event that you want to completely overwrite the server's template use an ETag of "*". Use this with caution since this operation cannot be undone.
NOTE: To get the ETag your request must accept the gzip encoding. Add the header Accept-Encoding: gzip to receive the ETag in the response header ETag.
| Back | FazBrowse Home | New Git URL |