-
firebase 에 이미지 저장하기error handling/Simple tips 2022. 8. 2. 21:38
firebase 의 실시간 데이터베이스 에 이미지를 저장할 때, 이미지는 파일 용량이 크기 때문에 firebase storage에 저장하고나서 저장된 위치를(url) 데이터베이스에 저장해야 한다.
그런데 firebase storage 에 저장한 이미지 경로는 gs 모듈이라서 불러왔을 때 접근이 불가하다. 이걸 https 로 바꿔주는 방법은 다음과 같다.
1. "https://firebasestorage.googleapis.com/v0/b/"
2. bucket object
3. "/o/"
4. correctly encoded path object.
5. "?alt=media"
6. token="..."'error handling > Simple tips' 카테고리의 다른 글
location.search 파라미터로 받아온 한글 쿼리의 깨짐 현상 (0) 2022.11.10 firestore 경로 설정 (0) 2022.09.07 office hour에서 나온 질문 정리 (testcase / third-party API) (0) 2020.07.03 [github] commit 기록을 터미널에서 보는 방법 (0) 2020.07.02 서버와 클라이언트의 연결 상관 관계 ( + body-parser module) (0) 2020.06.25