I have set up a little Firebase project with a Firestore database.
And I am facing a problem. The databaseURL does not seem to appear anywhere. I do not remember having the same issue when using the Realtime database.
I have looked in all the config files I could locate and also checked on the net where other people seem to have had the same issue. But at this point I am still without a databaseURL.
An since my DB is not located in us-central1 (DB location: eur3) the pattern below does not work.
https://[project-id].firebaseio
Where is the Firestore databaseURL ?
I have set up a little Firebase project with a Firestore database.
And I am facing a problem. The databaseURL does not seem to appear anywhere. I do not remember having the same issue when using the Realtime database.
I have looked in all the config files I could locate and also checked on the net where other people seem to have had the same issue. But at this point I am still without a databaseURL.
An since my DB is not located in us-central1 (DB location: eur3) the pattern below does not work.
https://[project-id].firebaseio
Where is the Firestore databaseURL ?
Share Improve this question asked Feb 14 at 5:26 MichelMichel 11.7k20 gold badges101 silver badges216 bronze badges 2 |2 Answers
Reset to default 2I think there is no URL for Firestore database unlike Realtime database.
The urls with .firebaseio
are only for Realtime databases.
As others have said: Firestore databases are not identified by a databaseURL
, but by a combination of project ID and an (optional) database name within that project (which defaults to (default)
).
databaseURL
value should be irrelevant unless it's causing some other problem for you). – Frank van Puffelen Commented Feb 14 at 15:55