React에서 Firebase 휴대폰 인증 연동

2020. 11. 19. 20:00서버 프로그래밍

역시나 어렵지 않게 구현 및 테스트가 가능하다. 글로벌 서비스를 만들려면 한국 이통사의 본인 인증 방식 보다는 Firebase Authentication API를 연동하여 구현하는 것이 현명하다.

medium.com/@akakankur81/phone-authentication-in-react-js-application-using-firebase-and-firebase-ui-146fd1a975d3

 

Phone Authentication in React js Application using Firebase and Firebase UI.

This blog provides you step by step implementation of Phone Number Authentication using Firebase in React Application.

medium.com

 

www.npmjs.com/package/firebase

 

firebase

Firebase JavaScript library for web and Node.js

www.npmjs.com

github.com/firebase/firebaseui-web

 

firebase/firebaseui-web

FirebaseUI is an open-source JavaScript library for Web that provides simple, customizable UI bindings on top of Firebase SDKs to eliminate boilerplate code and promote best practices. - firebase/f...

github.com

firebase.google.com/docs/auth/web/phone-auth

 

자바스크립트를 통해 전화번호로 Firebase 인증

Firebase 인증을 사용하면 사용자의 전화로 SMS 메시지를 전송하여 로그인하는 것이 가능합니다. 사용자는 SMS 메시지에 포함된 일회용 코드를 사용하여 로그인합니다. 앱에 전화번호 로그인을 추

firebase.google.com

stackoverflow.com/questions/54325094/how-to-change-country-code-in-firebaseui-auth-web

 

how to change country code in firebaseUI auth web

I trigger the firebaseUI phone number authentication on a button click. How to bind the country code (which user has selected in the field country in the form, i.e when user has selected the count...

stackoverflow.com

ui.start('#firebaseui-auth-container', {
  signInOptions: [
    {
      provider: firebase.auth.PhoneAuthProvider.PROVIDER_ID,
      // The default selected country.
      defaultCountry: 'GB'
    }
  ]
});