Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an API to *change* Firebase Remote Config values?

Firebase console support easy way to configure remote configuration parameter.

In our app we have remote configuration different per user, and those configuration are set on our own web portal.

Is there any API by which I can push configs from my own portal to Firebase remote config server and then use remote config lib on android app to get new configurations?

like image 876
GaneshP Avatar asked May 22 '16 12:05

GaneshP


People also ask

What is Firebaseremoteconfig Googleapis COM used for?

Firebase Remote Config is a cloud service that lets you change the behavior and appearance of your app without requiring users to download an app update. When using Remote Config, you create in-app default values that control the behavior and appearance of your app.

What file should be used for your remote config template?

Download Remote Config template defaults You can then include this file in your project and configure your app to import these values. You can download these files in XML format for Android apps, property list (plist) format for iOS apps, and JSON for web apps.


2 Answers

This feature is available in Firebase Remote Config REST API

like image 80
Safa Alai Avatar answered Oct 30 '22 04:10

Safa Alai


Yes! As of March 2018 there is now a REST API available for you to add or update values in the Remote Config service.

You can use this to either create your own custom front-ends for managing your remote config values, import Remote Config values from elsewhere, or add support to have your Remote Config values change dynamically based on something that might be happening on your server (or even a cron job). Documentation is here.

like image 33
Todd Kerpelman Avatar answered Oct 30 '22 04:10

Todd Kerpelman