커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
배포 설정
[왕초보] 노코드로 수익형 AI 앱 만들기
2주차
북마크
최*지
댓글
1
추천
0
조회수
8
조회수
8
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.




[1]번은 firebase 에서 deployed 설정이고 [2]번은 flutterflow내에서 들어갔을 때 설정입니

질문에 답변 주신대로 변경하였으나 플러터플로우내에서 설정은 변경이 되지 않네요 



[1] rules_version = '2';

service firebase.storage {

 match /b/{bucket}/o {

  match /{allPaths=**} {

   //allow read, write: if false; 

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

  }

  match /users/{userId}/{allPaths=**} {

   allow read: if request.auth.uid == userId ; 

   allow write: if request.auth.uid == userId;

  }

 }

}



[2] rules_version = '2';

service firebase.storage {

 match /b/{bucket}/o {

  match /{allPaths=**} {

   allow read, write: if false;

  }

  match /users/{userId}/{allPaths=**} {

   allow read: if true;

   allow write: if request.auth.uid == userId;

  }

 }

}






취소
 공유
취소
댓글 0
댓글 알림
나의얼굴