Jenny Sandoval
Jenny Sandoval

Reputation: 21

How to use Firebase Remote Config in Cloud Functions?

I’m new in firebase, I want to use Firebase Remote Config to store configuration data related to my business logic and retrieve it from my HTTPS triggered Firebase Functions.

How can do that using TypeScript?

Upvotes: 2

Views: 2478

Answers (2)

Ollie
Ollie

Reputation: 664

The firebase-admin node sdk has been updated to include this functionality. Update to the latest version and follow the documentation.

Upvotes: 0

Frank van Puffelen
Frank van Puffelen

Reputation: 598708

There is a REST API for Remote Config, but that one is focused on reading and changing the parameters not on consuming them.

In other words, the REST API allows you to programmatically do the same actions as you can do in the Firebase console, it is not a replacement for the mobile SDKs.

Upvotes: 2

Related Questions