문제점
아래 코드로 firebase의 계정을 삭제할 때 발생했다.
await FirebaseAuth.instance.currentUser?.delete();
해결방법
계정 삭제와 같은 민감한 작업엔 계정 재인증이 필요해 발생하는 문제이므로 재인증하면 된다.
await FirebaseAuth.instance.currentUser?.reauthenticateWithCredential(각 플랫폼의 OAuthCredential);
'개발 > Flutter' 카테고리의 다른 글
화면 눌러 focus 해제 (0) | 2022.12.04 |
---|---|
status bar color 변경 (0) | 2022.12.04 |
[Error] CocoaPods could not find compatible versions for pod (0) | 2022.08.04 |
[Error][firebase] Unhandled Exception: PlatformException(channel-error, Unable to establish connection on channel., null, null) (0) | 2022.08.04 |
[Error] setState() or markNeedsBuild() called during build (0) | 2022.08.01 |