Firebase `getDownloadURL`
const storage = firebase.storage();
const pathReference = storage.ref('audio/interview.wav');
// TODO: add error handling
const url = await pathReference.getDownloadURL();Last updated
Was this helpful?
const storage = firebase.storage();
const pathReference = storage.ref('audio/interview.wav');
// TODO: add error handling
const url = await pathReference.getDownloadURL();Last updated
Was this helpful?
Was this helpful?