반응형
FireStore를 사용하는데 이런 경험이 있을 것이다!
사용한지 한 달이 넘으면 이런 경우가 발생하는데, 권한이 자동으로 재조정되기 때문이다.
간단한 방법으로 해결할 수 있다.
Firebase 콘솔 -> FireStore -> 규칙
이 부분에 allow ~~ 써 있는 부분을 아래와 같은 명령어로 바꿔주면 된다.
allow read, write: if request.auth.uid != null;
https://www.inflearn.com/questions/29420
반응형
'[TroubleShooting]' 카테고리의 다른 글
An exception has occurred in the compiler (1.8.0_242-release). (0) | 2022.11.30 |
---|---|
query did not return a unique result: 3 (0) | 2022.11.22 |
[Flutter] Firebase FCM 노티피케이션이 도착하지 않는다면 (0) | 2022.10.28 |
[Flutter] Unhandled Exception: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10 (0) | 2022.10.22 |
FlutterFire iOS 오류 해결 (0) | 2022.10.14 |