[RN] firebase에서 user의 고유 iid 가져오기

도디·2020년 8월 11일
2

React Native

목록 보기
8/28

도하!
오늘은 firebase를 연결한 react native 프로젝트에서 user의 instance id를 가져오는 방법을 공유해봅니다. 사실 도큐먼트에 아주 친절하게 나와 있습니다.
참고 ) react native firebase 도큐먼트


라이브러리 설치

// Install & setup the app module & the iid module
yarn add @react-native-firebase/app @react-native-firebase/iid

// If you're developing your app using iOS, run this command
cd ios/ && pod install

iid 가져오기

import iid from '@react-native-firebase/iid';

async function getIid() {
  let id = await iid().get();
  return id;
}

useEffect(() => {
  getIid().then(res => console.log(res));
}, [])

console.log(res)로 찍으면 22글자(?) 정도의 instance id 가 찍힌다.
에뮬레이터 기기 마다도 다른 인스턴트 아이디를 가지고 있다.
쏘이지

profile
충전중..🤔

0개의 댓글