Firbase 의 Storage 사용 중 발생한 오류입니다.
문제가 발생한 이유는 Storage 에 권한이 없기 때문인데,
Storage - Rules 에 다음 코드를 입력해주면 됩니다.
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
< 해결완료 >