Community

개발자 99% 커뮤니티에서 수다 떨어요!

← Go back
클론코딩 트위터 에러 문제 때문에 질문 있습니다.
#ask
2년 전
6,579
3

우선 에러 로깅 메세지는

// 20220417193316

// https://firebasestorage.googleapis.com/v0/b/nwitter-6b141.appspot.com/o/4Pt86CkVNlaF8tGs8lVPtKehZz53%2F27ab3883-9c7f-477b-a002-3bfc291b4e19?alt=media&token=fd3c99a7-de43-476d-8855-d9d6df5561e7

{

"error": {

"code": 403,

"message": "Permission denied."

}

}

입니다. 우선 그래서 파이어베이스 스토리지 목록 가서


rules_version = '2';

service firebase.storage {

  match /b/{bucket}/o {

    match /{allPaths=**} {

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

    }

  }

}

이렇게 바꿔야 된다고 해서 바꿨는데

결과 화면이 밑에 이미지가 깨져서 나오는데 왜그러는지 모르겠습니다..
어떻게 고쳐야 될지 모르겠네요 


3 comments