Langsung ke konten utama

Postingan

Menampilkan postingan dengan label firebase user authentication

Firebase Phone Authentication - Example

Hi Friends. In this tutorial, we will learn how to implement firebase phone authentication with it's origin. Digits is an Simple User Phone Authentication Service to create easy login experience. Now Digits is acquired by Google's Firebase and it provides free service for limited amount of authentication per month. However, if you need to sign in a very high volume of users with phone authentication, you might need to upgrade your pricing plan. See the pricing  page.  You can use Firebase Authentication to sign in a user by sending an SMS message to the user's phone. The user signs in using a one-time code contained in the SMS message. Setup Firebase To setup firebase in your project, read previous post . After setting up, open Authentication sign in method and enable phone authentication method. You should Add SHA Fingerprint in your application. To get SHA Fingerprint use the following Code with Command Prompt in Windows keytool -list -v -keystore "%USERPROFILE%\.and...

Firebase User Authentication in Android

Firebase provides more features as described in previous post . One of the very useful feature is User Authentication. Different types of User Authentication are, Email and Password Authentication Google Plus Authentication Facebook Authentication Github Authentication In this post, I will explain the way to implement Firebase Email & Password authentication. To demonstrate how simplified and easy to use Firebase is, we will build a simple login / register (Firebase Authentication) demo. This separates sensitive user credentials from your application data, and lets you focus on the user interface and experience for your Application. It is suitable for Simple, Easy and Perfect way of handling Login, Registration, Forget Password and so on. The Feature and Settings up of Application in Application is Explained in Previous post . After creating the project, Enable Firebase Email & Password authentication by selecting Authentication in Left Pane in Firebase Console and Go to Sign-i...