0

I want to save same values on firebase and read those values in my web app. I have my own database (mssql) and I don't want to use firebase database.

For example, I want to save those values on firebase:

actionText = "test"

btnConfirmText = "Aprrove"

btnConfirmColor = "#fffff"

And on my website read those values in javascript

6
  • You can use Firebase Remote Config if you need to do A/B testing of these values. If this never changes or is always in sync, you can use Firebase hosting and just serve as application/json. Commented Aug 26, 2018 at 13:42
  • @JamesPoag: Firebase Remote Config doesn't have a client-side API for reading the values into the client. Commented Aug 26, 2018 at 14:15
  • 1
    @tokenaizer: where do you want to store these values? Saying "in Firebase, but not in the database" is rather broad. If you're looking for what options there are to store data in Firebase from a web client, then have a look at stackoverflow.com/questions/37482907/… Commented Aug 26, 2018 at 14:17
  • There is REST API, which I thought is what I linked to?? It should return a json object... Commented Aug 26, 2018 at 14:53
  • Elaborating on Frank's comment, for what do you want to use Firebase for? Only for the hosting? For the authentication? For the Cloud Functions? Or maybe for Firestore, which IS one of the NoSQL DBs of the Firebase platform. If you have your own DB (MS SQL, as you explain), what is your aim by using Firebase? Commented Aug 26, 2018 at 15:14

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.