본문 바로가기
[TroubleShooting]

[Flutter] FireStore Unhandled Exception: PlatformException

by Hevton 2022. 10. 22.
반응형

 

FireStore를 사용하는데 이런 경험이 있을 것이다!

 

사용한지 한 달이 넘으면 이런 경우가 발생하는데, 권한이 자동으로 재조정되기 때문이다.

 

간단한 방법으로 해결할 수 있다.

 

Firebase 콘솔 -> FireStore -> 규칙

이 부분에 allow ~~ 써 있는 부분을 아래와 같은 명령어로 바꿔주면 된다.

allow read, write: if request.auth.uid != null;

 

 

 

https://www.inflearn.com/questions/29420

 

permission denied / unhandled Exception 오류 - 인프런 | 질문 & 답변

flutter firestore Status{code=PERMISSION_DENIED, description=Missing or insufficient permissions., cause=null} Unhandled Exception: PlatformException(Er...

www.inflearn.com

 

 

반응형