Let's say that I have a Firebase project name and an API key but I don't know the structure of the database. How can I query all database data using REST API?
For more specifically, I'm messing around with a mobile game called Dynamons World and it looks like they use Firebase to store data for PvP matches. I found Firebase URL and API key stored in apk file. They left it there so I thought it wouldn't be a problem if I tried opening it and seeing what was inside.
I tried querying the data using:
GET https://dynamons-3-1cdf5.firebaseio.com/.json?key=AIzaSyAJfk_Feo4__C-oNz0eZ8lQmyF7rwYhnjk
But it returns "Permission denied", I tried looking for Refs that I can access in the decompiled code of the game but I can't seem to find them.
How can I query the database, or at least know what Refs I can retrieve ??