I have tried to understand but not able to see how and where might be the data I am storing after login is going.
public static final String BASE_URL = \"https:/
For web end
Javascript code:
var user = firebase.auth().currentUser; if (user != null) { uid = user.uid; firebase.database().ref('/users/'+uid).push({ foo: 'abc', bar: 'pqr' }); }
Read https://firebase.google.com/docs/auth/web/manage-users#get_the_currently_signed-in_user for more information.