Setting up Firebase Web JavaScript project. Firebase Authentication allows to authenticate users. But are Firebase SDK methods secure over various networks/routers ?
I am new to Firebase. I am trying to understand different functions/features provided by Firebase. For example, Firebase Authentication (Guide) helps to login/logout and much more a user.
In one of its methods (Guide) I can see it uses input username/password: firebase.auth().createUserWithEmailAndPassword(email, password)
to check if credentials are correct. So, when this information moves over networks to back end instances, is this secure ?
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
// ...
});
It would be great if someone can share how the data is moved across with firebase js sdks and if it's secure ?