Firebase

How To Enable Email Authentication in Firebase?

Some of the following Steps are used to authentication Email in the Firebase i.e.

Steps 1 – Click on Authentication tabs
Steps 2 – Select User tabs under the Authentication
Steps 3 –Click on “Add User” Button and fill the Email and Password in the email textbox and password text.

Steps 4 - Finlay click on Add user button and see the identifier and authenticated user UID. You can copy and use this User UID in your apps to authentication.

Example
var emailIds = "anil.singh@gmail.com";
var password = "[password]";

firebase.auth().createUserWithEmailAndPassword(emailIds, password)
        .catch(function(error) {
             console.log(error.code);
             console.log(error.message);
});

Stayed Informed - Firebase Tutorial for Android and IOS

I hope you are enjoying with this post! Please share with you friends. Thank you so much!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^