Connect Firebase to Postman

0

Is it possible to connect the Postman tool to the firebase?

I need some program that makes the connection and then perform "POST" inside the firebase. I need to register several products there that contain price, description among others. And to do this manually is very time consuming.

Thankful.

    
asked by anonymous 20.05.2018 / 15:24

1 answer

0

Firebase has a very easy-to-use REST API . You can get the URL, put it in Postman and do your POST.

An alternate way to register multiple products is through the Firebase CLI . As shown in this article , you can put all products in a produtos.json file and then use the command:

firebase database:set /produtos/ produtos.json
    
20.05.2018 / 18:17