Connect Firebase to Postman

Asked

Viewed 777 times

1

There is possibility to connect to firebase the Postman tool ?

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

Grateful.

1 answer

1


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

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

firebase database:set /produtos/ produtos.json
  • 1

    Hello, Rosario. Perfect I am already checking. I was unaware of this tool. Thanks for the help. It was of great use.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.