In the third last line of the below code, how can I find the firebase URL. I am not able to find it. Can anyone provide me the best link on how to setup firebase facebook login with android.
public void saveUser() {
//Add YOUR Firebase Reference URL instead of the following URL
Firebase myFirebaseRef = new Firebase("https://androidbashfirebase.firebaseio.com/"); //<---- How to find this
myFirebaseRef = myFirebaseRef.child("users").child(getId());
myFirebaseRef.setValue(this);
}
You should have done searching by yourself first. Here you are,
- Open Firebase Console
- Select your app, and go to database, marked is the url you need.
For UPDATED UI
Follow the below steps to get it in new UI of Firebase Console:
- Go to Database section
- Tap Cloud Firebase (marked 1 in picture) and select Realtime Database
- Marked 2 is the URL
When you create you Firebase database, it will be created with a unique URL ending in firebaseio.com. The URL of the database follows the format:
https://<PROJECT_ID>.firebaseio.com/
What you want to do is go to the Database tab, switch from Cloud Firestore (Beta) to Realtime Database using the select button. You will be able to see your DB URL as shown in the following:
I hope this helps!
NOTE: Same for both old and new UI of the firebase.
If you haven't created Firebase account already, Just Create it first. Head over to console and add a new App over there if not added. If you already got an app just click on it and go to dashboard.
In Dashboard click on Database and you will see the Firebase Reference URL over there. Refer to below Screenshot
I hope it helps you.
As Neeraj Chand said: Now there are two kinds of databases on firebase - firestore and Realtime Database. If you are on firestore mode (default) then u might not find the url to db directly. Switch to Realtime Database from the blue dropdown on the top and you will get the url watch this image
来源:https://stackoverflow.com/questions/40168564/where-can-i-find-my-firebase-reference-url-in-firebase-account