Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does firestore have a json url to show data?

with firebase I use these urls a lot to quickly view my data in the browser: - https://YOUR_DB.firebaseio.com/YOUR_COLLECTION.json - https://YOUR_DB.firebaseio.com/YOUR_COLLECTION/YOUR_DOCUMENT.json

It gives a json representation of the data for that particular collection or document.

Is there an equivalent in Firestore?

like image 226
Gerrit Verhaar Avatar asked Jan 09 '18 11:01

Gerrit Verhaar


1 Answers

Those URLs are the REST API of the Firebase Realtime Database.

While there is a REST API for Cloud Firestore it works very differently.

like image 84
Frank van Puffelen Avatar answered Oct 18 '22 08:10

Frank van Puffelen