Skip to main content

Posts

Showing posts with the label How To Email Authentication in 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 y...