Firebase

개발/Server

[Error][Firebase CLI] Failed to list Firebase projects

문제점 로그인을 했었지만 인증이 제대로 되지 않아 프로젝트 목록을 불러오지 못한 것. 해결방법 firebase login --reauth 위 명령을 통해 재인증한 뒤 목록을 불러오면 정상적으로 목록 출력 가능.

개발/Flutter

[Error][Firebase] This operation is sensitive and requires recent authentication.

문제점 아래 코드로 firebase의 계정을 삭제할 때 발생했다. await FirebaseAuth.instance.currentUser?.delete(); 해결방법 계정 삭제와 같은 민감한 작업엔 계정 재인증이 필요해 발생하는 문제이므로 재인증하면 된다. await FirebaseAuth.instance.currentUser?.reauthenticateWithCredential(각 플랫폼의 OAuthCredential);

카테고리 없음

[Error][firebase][apple_login] [firebase_auth/invalid-credential] The supplied auth credential is malformed or has expired. [ The audience in ID Token [com.your.service.identifier] does not match the expected audience. ]

문제점 어떤 글에선 firebase의 bundle id와 앱 내의 bundle id가 달라서 발생했다고도 한다. 내 경우엔 firebase에 apple 로그인 설정하는 곳에 service id를 잘못 입력해서 발생했다. 해결방법 잘못 입력된 값을 정상적으로 변경해준다.

개발/Flutter

[Error][firebase] Unhandled Exception: PlatformException(channel-error, Unable to establish connection on channel., null, null)

Error: Required named parameter 'auth' must be provided. 위 문제도 이 해결방법과 똑같이 해결함 문제점 firebase 관련된 패키지들의 버전이 호환되지 않아 발생한 것으로 보임 해결방법 firebase 관련 패키지들의 버전 최신화 flutter pub upgrade 설치된firebase패키지이름 최신화만 해선 동작하지 않으면 아래 방법 하나씩 해보기 flutter clean 실행 후 flutter pub get 실행 flutterfire configure로 firebase_options파일 재생성 참고 [Solved] Unhandled Exception: PlatformException(channel-error, Unable to establish conne..

개발/Flutter

Error running pod install

문제점 내가 발생한 문제는 두가지이다. 문제 1 firebase플러그인에 대한 내용이 포함된 에러 및 버전을 자동으로 9.0으로 맞춘다는 메시지 출력 [!] Automatically assigning platform iOS with version 9.0 on target Runner because no platform was specified. Please specify a platform for this target in your Podfile. 원인 : firebase를 사용하기위한 ios minimum버전을 맞추지않아 발생 문제 2 LoadError -dlopen~~~ 에러 발생 원인 : Apple Silicon(M1)에 맞지않는 cocoapods 문제로 인해 발생 이외에 다른 패키지의 버전이 맞지..

leebera_
'Firebase' 태그의 글 목록