I'm trying to upload files from firebase storage for now they seem to upload correctly, except that it doesn't provide me with a public url from firebase console and I can't see the information I'm hosting.
I'm using the api of firebase-admin to upload the files
const admin = require('firebase-admin');
admin.initializeApp(...)
let storage = admin.storage().bucket();
const options = {
public:true,
destination:`invoices/${clientNum}/invoice-${invoiceabs}.pdf`
};
let storageRef = await storage.upload(invoicePath,options)
What can I do?
Thank you