https://medium.com/@ericmorgan1/upload-images-to-firebase-in-expo-c4a7d4c46d06

 

Upload Images to Firebase in Expo - EM - Medium

The ability to upload images directly to Firebase Storage has finally arrived with the release of Expo 26!!! Here’s a quick tutorial for…

medium.com

이 글을 참고했다.

 

expo imagepicker로 갤러리에 있는 uri를 받아오고 firebase에 이미지 업로드하려고 putFile을 호출했는데 자꾸 없덴다 ㅡㅡ

몇시간을 날렸는지 모르겠음; 분명 API문서에 있는 함수고, 사용법도 맞춰서 썼고, 버전도 다 최신꺼라 업데이트 할것도 없는데!! 왜이러는거야!!! 다른사람이 올린 예제 복붙했는데도 그런 함수 없다고 하고.. 하..

 

해결은 했지만 아직도 왜 안됬는지 모르겠다. putFile 안쓰고 그냥 put썼다 ㅡㅡ

 

const response = await fetch(this.state.profile_image);

const blob = await response.blob();

imagesRef.put(blob);

 

putFile쓰는 사람은 어떻게 한거야?!!!

 

+ Recent posts