Home supabase Download a file
Post
Cancel

supabase Download a file

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Download a file

파일 다운로드

1
2
3
4
const { data, error } = await supabase
  .storage
  .from('avatars')
  .download('folder/avatar1.png')

파일 변환하여 다운로드

1
2
3
4
5
6
7
8
9
10
const { data, error } = await supabase
  .storage
  .from('avatars')
  .download('folder/avatar1.png', {
    transform: {
      width: 100,
      height: 100,
      quality: 80
    }
  })
This post is licensed under CC BY 4.0 by the author.

supabase Upload a file

supabase List all files in a bucket