[React Native] Firebase Auth error - invalid_audience

쓰멍이·2021년 3월 14일
0
post-custom-banner

에러내용

해결방법

  • React Native 에서 Google SignIn을 시도할때 webclientId를 전달해 줍니다.
  • 이때 플랫폼에 따라 iOS인 경우 iOS용 GoogleService-Info.plist 파일 안에 있는 Client ID를 사용하도록 해주어야 합니다.
  • 아래와 같이 코드를 수정하여 정상동작 확인하였습니다.
    GoogleSignin.configure({
    webClientId: Platform.OS === 'ios' ? 'iOS Client Id' : 'Client Id From Google services.json'
    }),
profile
우당탕탕 앱개발자
post-custom-banner

0개의 댓글